Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/stlport/src/
H A 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
157 static inline bool _Stl_is_neg_inf(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
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
196 static inline bool _Stl_is_inf(double x) { return isinf(x); } in _Stl_is_inf() function
201 static inline bool _Stl_is_inf(double x) { return false; } in _Stl_is_inf() function
[all …]