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

/external/v8/src/
H A Dwin32-math.cc61 int isinf(double x) { 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/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h89 #ifndef isinf
90 inline bool isinf(double x) { return !finite(x) && !isnand(x); } function
140 inline bool isinf(double num) { return !_finite(num) && !_isnan(num); } function
181 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
253 using std::isinf;
/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/qemu/fpu/
H A Dsoftfloat-native.h78 #ifndef isinf
79 # define isinf(x) \ macro

Completed in 561 milliseconds