Searched defs:isnan (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Dwin32-math.cc55 int isnan(double x) { function
68 return isnan(x) || isnan(y) ? 0 : x < y;
74 return isnan(x) || isnan(y) ? 0 : x > y;
/external/protobuf/python/google/protobuf/internal/
H A Dgenerator_test.py82 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
84 def isnan(val): function in function:GeneratorTest.testExtremeDefaultValues
89 return not isnan(val) and isnan(val * 0)
95 self.assertTrue(isnan(message.nan_double))
101 self.assertTrue(isnan(message.nan_float))
/external/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h141 inline bool isnan(double num) { return !!_isnan(num); } function
254 using std::isnan;
/external/stlport/stlport/stl/
H A D_cmath.h538 template<typename _Tp> inline int __capture_isnan(_Tp __f) { return isnan(__f); }
543 #undef isnan macro
548 template<typename _Tp> inline int isnan(_Tp __f) { return __capture_isnan(__f); } function in namespace:__captured
579 using __captured::isnan;
/external/qemu/fpu/
H A Dsoftfloat-native.h36 #define unordered(x, y) (isnan(x) || isnan(y))
68 #ifndef isnan
69 # define isnan(x) \ macro
83 static inline int isinf_f (float x) { return isnan (x - x); }
84 static inline int isinf_d (double x) { return isnan (x - x); }
85 static inline int isinf_ld (long double x) { return isnan (x - x); }

Completed in 108 milliseconds