Home
last modified time | relevance | path

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

/external/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
162 static inline bool _Stl_is_inf(long double x) { return _Stl_is_nan_or_inf(x) && !_isnanl(x)… in _Stl_is_inf() function
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
184 static bool _Stl_is_inf(double x) { return !finite(x); } in _Stl_is_inf() function
190 static inline bool _Stl_is_inf (double x) { return _fp_isINF(x); } in _Stl_is_inf() function
[all …]