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

/external/chromium_org/v8/src/base/
H A Dqnx-math.h12 #undef isinf macro
H A Dwin32-math.cc29 int isinf(double x) { function in namespace:std
/external/libcxx/include/support/win32/
H A Dmath_win32.h29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
/external/chromium_org/third_party/libxml/src/include/
H A Dwin32config.h49 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
51 #ifndef isinf
52 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
60 #ifndef isinf
61 static int isinf (double d) { function
/external/chromium_org/third_party/libxml/win32/
H A Dconfig.h49 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
51 #ifndef isinf
52 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
60 #ifndef isinf
61 static int isinf (double d) { function
/external/chromium_org/third_party/libxslt/libxslt/
H A Dwin32config.h36 /* Bjorn Reese figured a quite nice construct for isinf() using the
38 #ifndef isinf
39 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
47 static int isinf (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
87 def isinf(val): function in function:GeneratorTest.testExtremeDefaultValues
91 self.assertTrue(isinf(message.inf_double))
93 self.assertTrue(isinf(message.neg_inf_double))
97 self.assertTrue(isinf(message.inf_float))
99 self.assertTrue(isinf(message.neg_inf_float))
/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
90 def isinf(val): function in function:GeneratorTest.testExtremeDefaultValues
94 self.assertTrue(isinf(message.inf_double))
96 self.assertTrue(isinf(message.neg_inf_double))
100 self.assertTrue(isinf(message.inf_float))
102 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/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h128 inline bool isinf(double num) { return !_finite(num) && !_isnan(num); } function in namespace:std
166 inline double wtf_fmod(double x, double y) { return (!std::isinf(x) && std::isinf(y)) ? x : fmod(x, y); }
301 if (std::isnan(d) || std::isinf(d))
/external/stlport/stlport/stl/
H A D_cmath.h537 template<typename _Tp> inline int __capture_isinf(_Tp __f) { return isinf(__f); }
542 #undef isinf macro
547 template<typename _Tp> inline int isinf(_Tp __f) { return __capture_isinf(__f); } function in namespace:__captured
578 using __captured::isinf;
/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.h76 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux
82 #define IsInf(x) std::isinf(x) // GNU C/C++ (and/or other compilers), just hope for C99 conformance
477 friend bool isinf (const mpreal& v);
1590 inline bool isinf (const mpreal& v){ return (mpfr_inf_p(v.mp) != 0); } function in namespace:mpfr

Completed in 376 milliseconds