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

/external/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.h35 _LIBCPP_ALWAYS_INLINE bool isnan( double num ) function
77 return isnan(x) || isnan(y);
/external/libxml2/include/
H A Dwin32config.h58 #ifndef isnan
59 #define isnan(d) (_isnan(d)) macro
79 #ifndef isnan
80 static int isnan (double d) { function
/external/libxml2/win32/VC10/
H A Dconfig.h57 #ifndef isnan
58 #define isnan(d) (_isnan(d)) macro
78 #ifndef isnan
79 static int isnan (double d) { function
/external/protobuf/python/google/protobuf/internal/
H A Dgenerator_test.py86 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
88 def isnan(val): function in function:GeneratorTest.testExtremeDefaultValues
93 return not isnan(val) and isnan(val * 0)
99 self.assertTrue(isnan(message.nan_double))
105 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)
181 self.assertTrue(isnan(golden_message.optional_float))
182 self.assertTrue(isnan(golden_message.optional_double))
183 self.assertTrue(isnan(golden_message.repeated_float[0]))
184 self.assertTrue(isnan(golden_message.repeated_double[0]))
193 self.assertTrue(isnan(message.optional_float))
194 self.assertTrue(isnan(messag
[all...]
/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.h532 friend bool isnan (const mpreal& v);
1689 inline bool isnan (const mpreal& op){ return (mpfr_nan_p (op.mpfr_srcptr()) != 0 ); } function in namespace:mpfr

Completed in 3712 milliseconds