Searched defs:_Stl_is_inf (Results 1 - 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
H A Dnum_put_float.cpp137 static inline bool _Stl_is_inf(double x) { return isinf(x); } function
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } function
150 static inline bool _Stl_is_inf(double x) { function
156 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && !_isnan(x);} function
157 static inline bool _Stl_is_neg_inf(double x) { return _Stl_is_inf(x) && x < 0 ; }
162 static inline bool _Stl_is_inf(long double x) { return _Stl_is_nan_or_inf(x) && !_isnanl(x);} function
163 static inline bool _Stl_is_neg_inf(long double x) { return _Stl_is_inf(x) && x < 0 ; }
168 static inline bool _Stl_is_inf(long double x) { return _Stl_is_inf(__STATIC_CAST(double, x));} function
174 static bool _Stl_is_inf(doubl function
179 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && ! isnan(x); } function
184 static bool _Stl_is_inf(double x) { return !finite(x); } function
190 static inline bool _Stl_is_inf (double x) { return _fp_isINF(x); } function
196 static inline bool _Stl_is_inf(double x) { return isinf(x); } function
201 static inline bool _Stl_is_inf(double x) { return false; } function
[all...]

Completed in 5 milliseconds