Home
last modified time | relevance | path

Searched defs:_Stl_is_nan_or_inf (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dnum_put_float.cpp130 static inline bool _Stl_is_nan_or_inf(double x) in _Stl_is_nan_or_inf() function
143 static inline bool _Stl_is_nan_or_inf(double x) { return IsNANorINF(x); } in _Stl_is_nan_or_inf() function
148 static inline bool _Stl_is_nan_or_inf(double x) { return !_finite(x); } in _Stl_is_nan_or_inf() function
161 static inline bool _Stl_is_nan_or_inf(long double x) { return !_finitel(x); } in _Stl_is_nan_or_inf() function
167 static inline bool _Stl_is_nan_or_inf(long double x) { return _Stl_is_nan_or_inf(__STATIC_CAST(doub… in _Stl_is_nan_or_inf() function
173 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !isfinite(x); } in _Stl_is_nan_or_inf() function
178 static inline bool _Stl_is_nan_or_inf(double x) { return !finite(x); } in _Stl_is_nan_or_inf() function
183 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !finite(x); } in _Stl_is_nan_or_inf() function
189 static inline bool _Stl_is_nan_or_inf (double x) { return _fp_isINF(x) || _fp_isNAN(x); } in _Stl_is_nan_or_inf() function
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); } in _Stl_is_nan_or_inf() function
[all …]