Searched refs:isinf (Results 1 - 25 of 49) sorted by relevance

12

/external/llvm/autoconf/m4/
H A Dfunc_isinf.m42 # This function determins if the isinf function isavailable on this
7 [isinf], [<math.h>],
8 [float f; isinf(f);])
10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
14 [isinf], [<cmath>],
15 [float f; isinf(f);])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
21 [std::isinf], [<cmath>],
22 [float f; std::isinf(f);])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf functio
[all...]
/external/llvm/projects/sample/autoconf/m4/
H A Dfunc_isinf.m42 # This function determins if the isinf function isavailable on this
7 [isinf], [<math.h>],
8 [float f; isinf(f);])
10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
14 [isinf], [<cmath>],
15 [float f; isinf(f);])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
21 [std::isinf], [<cmath>],
22 [float f; std::isinf(f);])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf functio
[all...]
/external/llvm/lib/Support/
H A DIsInf.cpp1 //===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
10 // Platform-independent wrapper around C99 isinf()
22 using std::isinf;
27 static int isinf(double x) { return !finite(x) && x==x; }
30 #define isinf(X) (!_finite(X))
32 // GCC's fixincludes seems to be removing the isinf() declaration from the
35 static int isinf(double x) { return !finite(x) && x==x; }
39 static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
41 # error "Don't know how to get isinf()"
46 int IsInf(float f) { return isinf(
[all...]
/external/v8/src/
H A Dwin32-math.h55 int isinf(double x);
H A Dwin32-math.cc61 int isinf(double x) { function
/external/webkit/Source/WebCore/webaudio/
H A DAudioParam.cpp43 if (!isnan(value) && !isinf(value))
/external/webkit/Source/JavaScriptCore/wtf/
H A DDecimalNumber.h43 ASSERT(!isnan(d) && !isinf(d));
57 ASSERT(!isnan(d) && !isinf(d));
71 ASSERT(!isnan(d) && !isinf(d));
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/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/WebCore/bindings/js/
H A DJSGeolocationCustom.cpp83 if (!(isinf(timeoutNumber) && (timeoutNumber > 0))) {
98 if (isinf(maximumAgeNumber) && (maximumAgeNumber > 0)) {
H A DJSHTMLOptionsCollectionCustom.cpp50 if (!isnan(lengthValue) && !isinf(lengthValue)) {
/external/compiler-rt/test/Unit/
H A Dmuldc3_test.c30 if (isinf(creal(x)) || isinf(cimag(x)))
H A Dmultc3_test.c33 if (isinf(creall(x)) || isinf(cimagl(x)))
H A Dmulxc3_test.c33 if (isinf(creall(x)) || isinf(cimagl(x)))
H A Ddivdc3_test.c30 if (isinf(creal(x)) || isinf(cimag(x)))
H A Ddivsc3_test.c30 if (isinf(crealf(x)) || isinf(cimagf(x)))
H A Ddivtc3_test.c33 if (isinf(creall(x)) || isinf(cimagl(x)))
H A Ddivxc3_test.c33 if (isinf(creall(x)) || isinf(cimagl(x)))
H A Dmulsc3_test.c30 if (isinf(crealf(x)) || isinf(cimagf(x)))
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8GeolocationCustom.cpp90 if (!(isinf(timeoutDouble) && timeoutDouble > 0)) {
113 if (isinf(maximumAgeDouble) && maximumAgeDouble > 0) {
/external/webkit/Source/JavaScriptCore/runtime/
H A DNumberPrototype.cpp113 if (isnan(x) || isinf(x))
152 ASSERT(!isnan(x) && !isinf(x));
187 if (isnan(x) || isinf(x))
244 if (isnan(x) || isinf(x))
/external/webkit/Source/WebCore/platform/audio/
H A DAudioResampler.cpp113 if (isnan(rate) || isinf(rate) || rate <= 0.0)
/external/webkit/Source/WebCore/xml/
H A DXPathValue.cpp132 if (isinf(m_number))
/external/skia/include/core/
H A DSkFloatingPoint.h78 #define sk_float_isinf(x) isinf(x)
/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;

Completed in 469 milliseconds

12