Home
last modified time | relevance | path

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

/external/stlport/src/
Dnum_put_float.cpp139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; } in _Stl_is_neg_inf() function
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); } in _Stl_is_neg_inf() function
154 static inline bool _Stl_is_neg_inf(double x) { return _fpclass(x) == _FPCLASS_NINF; } in _Stl_is_neg_inf() function
157 static inline bool _Stl_is_neg_inf(double x) { return _Stl_is_inf(x) && x < 0 ; } in _Stl_is_neg_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() function
169 static inline bool _Stl_is_neg_inf(long double x) { return _Stl_is_neg_inf(__STATIC_CAST(double… in _Stl_is_neg_inf() function
175 static bool _Stl_is_neg_inf(double x) { return !isfinite(x) && signbit(x); } in _Stl_is_neg_inf() function
180 static inline bool _Stl_is_neg_inf(double x) { return _Stl_is_inf(x) && x < 0 ; } in _Stl_is_neg_inf() function
186 static bool _Stl_is_neg_inf(double x) { return _Stl_is_inf(x) && ( copysign(1., x) < 0 ); } in _Stl_is_neg_inf() function
191 static inline bool _Stl_is_neg_inf (double x) { return _fp_isINF(x) && x < 0; } in _Stl_is_neg_inf() function
[all …]