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

/external/chromium_org/v8/src/base/
H A Dqnx-math.h13 #undef isnan macro
H A Dwin32-math.cc23 int isnan(double x) { function in namespace:std
42 return isnan(x) || isnan(y) ? 0 : x < y;
48 return isnan(x) || isnan(y) ? 0 : x > y;
/external/libcxx/include/support/win32/
H A Dmath_win32.h33 _LIBCPP_ALWAYS_INLINE bool isnan( double num ) function
75 return isnan(x) || isnan(y);
/external/chromium_org/third_party/libxml/src/include/
H A Dwin32config.h56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
/external/chromium_org/third_party/libxml/win32/
H A Dconfig.h56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
/external/chromium_org/third_party/libxslt/libxslt/
H A Dwin32config.h43 #ifndef isnan
44 #define isnan(d) (_isnan(d)) macro
62 static int isnan (double d) { function
/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/chromium_org/content/common/
H A Dpage_state_serialization_unittest.cc22 inline bool isnan(double num) { return !!_isnan(num); } function in namespace:content::__anon7638
53 if (!(isnan(a.file_modification_time) && isnan(b.file_modification_time)))
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dgenerator_test.py85 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
87 def isnan(val): function in function:GeneratorTest.testExtremeDefaultValues
92 return not isnan(val) and isnan(val * 0)
98 self.assertTrue(isnan(message.nan_double))
104 self.assertTrue(isnan(message.nan_float))
H A Dmessage_test.py58 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
60 def isnan(val): function
65 return not isnan(val) and isnan(val * 0)
167 self.assertTrue(isnan(golden_message.optional_float))
168 self.assertTrue(isnan(golden_message.optional_double))
169 self.assertTrue(isnan(golden_message.repeated_float[0]))
170 self.assertTrue(isnan(golden_message.repeated_double[0]))
179 self.assertTrue(isnan(message.optional_float))
180 self.assertTrue(isnan(messag
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h129 inline bool isnan(double num) { return !!_isnan(num); } function in namespace:std
301 if (std::isnan(d) || std::isinf(d))
/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_math.h117 #define isnan(x) _isnan((double)(x)) macro
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h116 #define isnan(x) _isnan((double)(x)) macro
/external/bison/darwin-lib/
H A Dmath.h2396 /* The original <math.h> included above provides a declaration of isnan macro
2399 /* GCC 4.0 and newer provides three built-ins for isnan. */
2402 # elif defined isnan
2404 # define isnanf(x) isnan ((float)(x))
2416 This function is a gnulib extension, unlike isnan() which applied only
2419 /* The original <math.h> included above provides a declaration of isnan
2422 /* GCC 4.0 and newer provides three built-ins for isnan. */
2427 # define isnand(x) isnan ((double)(x))
2440 /* The original <math.h> included above provides a declaration of isnan
2443 /* GCC 4.0 and newer provides three built-ins for isnan
2483 # undef isnan macro
2484 # define isnan macro
2489 # undef isnan macro
2490 # define isnan macro
2498 # undef isnan macro
[all...]
/external/bison/lib/
H A Dmath.in.h2084 /* The original <math.h> included above provides a declaration of isnan macro
2087 /* GCC 4.0 and newer provides three built-ins for isnan. */
2090 # elif defined isnan
2092 # define isnanf(x) isnan ((float)(x))
2104 This function is a gnulib extension, unlike isnan() which applied only
2107 /* The original <math.h> included above provides a declaration of isnan
2110 /* GCC 4.0 and newer provides three built-ins for isnan. */
2115 # define isnand(x) isnan ((double)(x))
2128 /* The original <math.h> included above provides a declaration of isnan
2131 /* GCC 4.0 and newer provides three built-ins for isnan
2171 # undef isnan macro
2172 # define isnan macro
2186 # undef isnan macro
[all...]
/external/bison/linux-lib/
H A Dmath.h2396 /* The original <math.h> included above provides a declaration of isnan macro
2399 /* GCC 4.0 and newer provides three built-ins for isnan. */
2402 # elif defined isnan
2404 # define isnanf(x) isnan ((float)(x))
2416 This function is a gnulib extension, unlike isnan() which applied only
2419 /* The original <math.h> included above provides a declaration of isnan
2422 /* GCC 4.0 and newer provides three built-ins for isnan. */
2427 # define isnand(x) isnan ((double)(x))
2440 /* The original <math.h> included above provides a declaration of isnan
2443 /* GCC 4.0 and newer provides three built-ins for isnan
2483 # undef isnan macro
2484 # define isnan macro
2489 # undef isnan macro
2490 # define isnan macro
2498 # undef isnan macro
[all...]
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h476 friend bool isnan (const mpreal& v);
1589 inline bool isnan (const mpreal& v){ return (mpfr_nan_p(v.mp) != 0); } function in namespace:mpfr

Completed in 774 milliseconds