/external/llvm/autoconf/m4/ |
func_isinf.m4 | 2 # This function determins if the 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 function is found in <cmath>] [all...] |
/external/llvm/projects/sample/autoconf/m4/ |
func_isinf.m4 | 2 # This function determins if the 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 function is found in <cmath>] [all...] |
/external/llvm/lib/Support/ |
IsInf.cpp | 1 //===-- 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()" [all...] |
/frameworks/compile/libbcc/runtime/lib/ |
muldc3.c | 34 if (isinf(__a) || isinf(__b)) 36 __a = copysign(isinf(__a) ? 1 : 0, __a); 37 __b = copysign(isinf(__b) ? 1 : 0, __b); 44 if (isinf(__c) || isinf(__d)) 46 __c = copysign(isinf(__c) ? 1 : 0, __c); 47 __d = copysign(isinf(__d) ? 1 : 0, __d); 54 if (!__recalc && (isinf(__ac) || isinf(__bd) | [all...] |
mulsc3.c | 34 if (isinf(__a) || isinf(__b)) 36 __a = copysignf(isinf(__a) ? 1 : 0, __a); 37 __b = copysignf(isinf(__b) ? 1 : 0, __b); 44 if (isinf(__c) || isinf(__d)) 46 __c = copysignf(isinf(__c) ? 1 : 0, __c); 47 __d = copysignf(isinf(__d) ? 1 : 0, __d); 54 if (!__recalc && (isinf(__ac) || isinf(__bd) | [all...] |
mulxc3.c | 36 if (isinf(__a) || isinf(__b)) 38 __a = copysignl(isinf(__a) ? 1 : 0, __a); 39 __b = copysignl(isinf(__b) ? 1 : 0, __b); 46 if (isinf(__c) || isinf(__d)) 48 __c = copysignl(isinf(__c) ? 1 : 0, __c); 49 __d = copysignl(isinf(__d) ? 1 : 0, __d); 56 if (!__recalc && (isinf(__ac) || isinf(__bd) | [all...] |
divdc3.c | 43 else if ((isinf(__a) || isinf(__b)) && isfinite(__c) && isfinite(__d)) 45 __a = copysign(isinf(__a) ? 1.0 : 0.0, __a); 46 __b = copysign(isinf(__b) ? 1.0 : 0.0, __b); 50 else if (isinf(__logbw) && __logbw > 0.0 && isfinite(__a) && isfinite(__b)) 52 __c = copysign(isinf(__c) ? 1.0 : 0.0, __c); 53 __d = copysign(isinf(__d) ? 1.0 : 0.0, __d);
|
divsc3.c | 43 else if ((isinf(__a) || isinf(__b)) && isfinite(__c) && isfinite(__d)) 45 __a = copysignf(isinf(__a) ? 1 : 0, __a); 46 __b = copysignf(isinf(__b) ? 1 : 0, __b); 50 else if (isinf(__logbw) && __logbw > 0 && isfinite(__a) && isfinite(__b)) 52 __c = copysignf(isinf(__c) ? 1 : 0, __c); 53 __d = copysignf(isinf(__d) ? 1 : 0, __d);
|
divxc3.c | 44 else if ((isinf(__a) || isinf(__b)) && isfinite(__c) && isfinite(__d)) 46 __a = copysignl(isinf(__a) ? 1 : 0, __a); 47 __b = copysignl(isinf(__b) ? 1 : 0, __b); 51 else if (isinf(__logbw) && __logbw > 0 && isfinite(__a) && isfinite(__b)) 53 __c = copysignl(isinf(__c) ? 1 : 0, __c); 54 __d = copysignl(isinf(__d) ? 1 : 0, __d);
|
/frameworks/compile/libbcc/runtime/lib/ppc/ |
multc3.c | 13 (x).s.hi = __builtin_copysign(isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \ 48 if (isinf(aDD.s.hi) || isinf(bDD.s.hi)) 57 if (isinf(cDD.s.hi) || isinf(dDD.s.hi)) 73 if (isinf(acDD.s.hi) || isinf(bdDD.s.hi) || isinf(adDD.s.hi) || isinf(bcDD.s.hi))
|
divtc3.c | 13 (x).s.hi = __builtin_copysign(isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \ 67 else if ((isinf(aDD.s.hi) || isinf(bDD.s.hi)) && isfinite(cDD.s.hi) && isfinite(dDD.s.hi)) 77 else if ((isinf(cDD.s.hi) || isinf(dDD.s.hi)) && isfinite(aDD.s.hi) && isfinite(bDD.s.hi))
|
/external/v8/src/ |
win32-math.h | 55 int isinf(double x);
|
win32-math.cc | 61 int isinf(double x) { function
|
/external/webkit/Source/WebCore/webaudio/ |
AudioParam.cpp | 43 if (!isnan(value) && !isinf(value))
|
/external/webkit/Source/JavaScriptCore/wtf/ |
DecimalNumber.h | 43 ASSERT(!isnan(d) && !isinf(d)); 57 ASSERT(!isnan(d) && !isinf(d)); 71 ASSERT(!isnan(d) && !isinf(d));
|
MathExtras.h | 89 #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/ |
generator_test.py | 82 # 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/ |
JSGeolocationCustom.cpp | 83 if (!(isinf(timeoutNumber) && (timeoutNumber > 0))) { 98 if (isinf(maximumAgeNumber) && (maximumAgeNumber > 0)) {
|
JSHTMLOptionsCollectionCustom.cpp | 50 if (!isnan(lengthValue) && !isinf(lengthValue)) {
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8GeolocationCustom.cpp | 90 if (!(isinf(timeoutDouble) && timeoutDouble > 0)) { 113 if (isinf(maximumAgeDouble) && maximumAgeDouble > 0) {
|
/external/webkit/Source/JavaScriptCore/runtime/ |
NumberPrototype.cpp | 113 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/ |
AudioResampler.cpp | 113 if (isnan(rate) || isinf(rate) || rate <= 0.0)
|
/external/webkit/Source/WebCore/xml/ |
XPathValue.cpp | 132 if (isinf(m_number))
|
/external/skia/include/core/ |
SkFloatingPoint.h | 78 #define sk_float_isinf(x) isinf(x)
|
/external/compiler-rt/test/Unit/ |
divdc3_test.c | 30 if (isinf(creal(x)) || isinf(cimag(x)))
|