Home
last modified time | relevance | path

Searched refs:_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
156 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && !_isnan(x);} in _Stl_is_inf()
161 static inline bool _Stl_is_nan_or_inf(long double x) { return !_finitel(x); } in _Stl_is_nan_or_inf() function
162 static inline bool _Stl_is_inf(long double x) { return _Stl_is_nan_or_inf(x) && !_isnanl(x)… in _Stl_is_inf()
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
179 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && ! isnan(x); } in _Stl_is_inf()
[all …]