Searched defs:isinf (Results 1 - 13 of 13) sorted by relevance

/external/vulkan-validation-layers/libs/glm/detail/
H A D_fixes.hpp47 #ifdef isinf
48 #undef isinf macro
/external/v8/src/base/
H A Dqnx-math.h12 #undef isinf macro
/external/libcxx/include/support/win32/
H A Dmath_win32.h31 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
/external/libxml2/include/
H A Dwin32config.h51 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
53 #ifndef isinf
54 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
62 #ifndef isinf
63 static int isinf (double d) { function
/external/libxml2/win32/VC10/
H A Dconfig.h50 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
52 #ifndef isinf
53 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
61 #ifndef isinf
62 static int isinf (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
91 def isinf(val): function in function:GeneratorTest.testExtremeDefaultValues
95 self.assertTrue(isinf(message.inf_double))
97 self.assertTrue(isinf(message.neg_inf_double))
101 self.assertTrue(isinf(message.inf_float))
103 self.assertTrue(isinf(message.neg_inf_float))
H A Dmessage_test.py58 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
63 def isinf(val): function
67 return isinf(val) and (val > 0)
69 return isinf(val) and (val < 0)
/external/bison/darwin-lib/
H A Dmath.h2371 # undef isinf
2372 # define isinf(x) \
2378 # ifdef isinf
2379 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
2380 # undef isinf
2381 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
2385 # if defined isinf
2386 _GL_WARN_REAL_FLOATING_DECL (isinf); variable
2387 # undef isinf macro
2388 # define isinf( macro
[all...]
/external/bison/lib/
H A Dmath.in.h2059 # undef isinf macro
2060 # define isinf(x) \ macro
2066 # ifdef isinf
2067 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
2068 # undef isinf macro
2069 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
2073 # if defined isinf
2074 _GL_WARN_REAL_FLOATING_DECL (isinf);
2075 # undef isinf
2076 # define isinf(
[all...]
/external/bison/linux-lib/
H A Dmath.h2371 # undef isinf
2372 # define isinf(x) \
2378 # ifdef isinf
2379 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
2380 # undef isinf
2381 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
2385 # if defined isinf
2386 _GL_WARN_REAL_FLOATING_DECL (isinf); variable
2387 # undef isinf macro
2388 # define isinf( macro
[all...]
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h75 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux
81 #define IsInf(x) std::isinf(x) // GNU C/C++ (and/or other compilers), just hope for C99 conformance
534 friend bool isinf (const mpreal& v);
1691 inline bool isinf (const mpreal& op){ return (mpfr_inf_p (op.mpfr_srcptr()) != 0 ); } function in namespace:mpfr
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvparser.cpp33 inline bool isinf(double val) { return !_finite(val); } function in namespace:mkvparser
36 inline bool isinf(double val) { return std::isinf(val); }
285 if (mkvparser::isinf(result) || mkvparser::isnan(result))
/external/libvpx/libwebm/mkvparser/
H A Dmkvparser.cc31 inline bool isinf(double val) { return !_finite(val); } function in namespace:mkvparser
34 inline bool isinf(double val) { return std::isinf(val); } function in namespace:mkvparser
284 if (mkvparser::isinf(result) || mkvparser::isnan(result))

Completed in 632 milliseconds