Home
last modified time | relevance | path

Searched refs:_Stl_is_inf (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dnum_put_float.cpp137 static inline bool _Stl_is_inf(double x) { return isinf(x); } in _Stl_is_inf() function
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } in _Stl_is_inf() function
150 static inline bool _Stl_is_inf(double x) { in _Stl_is_inf() function
156 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && !_isnan(x);} in _Stl_is_inf() function
157 static inline bool _Stl_is_neg_inf(double x) { return _Stl_is_inf(x) && x < 0 ; } in _Stl_is_neg_inf()
162 static inline bool _Stl_is_inf(long double x) { return _Stl_is_nan_or_inf(x) && !_isnanl(x)… in _Stl_is_inf() function
163 static inline bool _Stl_is_neg_inf(long double x) { return _Stl_is_inf(x) && x < 0 ; } in _Stl_is_neg_inf()
168 static inline bool _Stl_is_inf(long double x) { return _Stl_is_inf(__STATIC_CAST(double, x)… in _Stl_is_inf() function
174 static bool _Stl_is_inf(double x) { return !isfinite(x); } in _Stl_is_inf() function
179 static inline bool _Stl_is_inf(double x) { return _Stl_is_nan_or_inf(x) && ! isnan(x); } in _Stl_is_inf() function
[all …]