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

/external/vulkan-validation-layers/libs/glm/detail/
H A D_fixes.hpp42 #ifdef isnan
43 #undef isnan macro
/external/v8/src/base/
H A Dqnx-math.h13 #undef isnan macro
/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/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
H A D__clang_cuda_cmath.h107 __DEVICE__ bool isnan(float __x) { return ::__isnanf(__x); } function
108 __DEVICE__ bool isnan(double __x) { return ::__isnan(__x); } function
/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.h533 friend bool isnan (const mpreal& v);
1690 inline bool isnan (const mpreal& op){ return (mpfr_nan_p (op.mpfr_srcptr()) != 0 ); } function in namespace:mpfr
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvparser.cpp32 inline bool isnan(double val) { return !!_isnan(val); } function in namespace:mkvparser
35 inline bool isnan(double val) { return std::isnan(val); }
285 if (mkvparser::isinf(result) || mkvparser::isnan(result))
/external/libvpx/libwebm/mkvparser/
H A Dmkvparser.cc30 inline bool isnan(double val) { return !!_isnan(val); } function in namespace:mkvparser
33 inline bool isnan(double val) { return std::isnan(val); } function in namespace:mkvparser
284 if (mkvparser::isinf(result) || mkvparser::isnan(result))

Completed in 1019 milliseconds