Searched refs:_Stl_is_neg_nan (Results 1 - 1 of 1) sorted by relevance

/external/stlport/src/
H A Dnum_put_float.cpp136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); } function
146 static inline bool _Stl_is_neg_nan(double x) { return IsNegNAN(x); } function
159 static inline bool _Stl_is_neg_nan(double x) { return _isnan(x) && _copysign(1., x) < 0 ; } function
164 static inline bool _Stl_is_neg_nan(long double x) { return _isnanl(x) && _copysignl(1.l, x) < 0 ; } function
170 static inline bool _Stl_is_neg_nan(long double x) { return _Stl_is_neg_nan(__STATIC_CAST(double, x)); } function
176 static bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); } function
181 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && copysign(1., x) < 0 ; } function
187 static bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); } function
192 static inline bool _Stl_is_neg_nan (doubl function
198 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); } function
203 static inline bool _Stl_is_neg_nan(double x) { return false; } function
[all...]

Completed in 869 milliseconds