HomeSort by relevance Sort by last modified time
    Searched full:isinf (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /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...]
Android.mk 28 IsInf.cpp \
CMakeLists.txt 30 IsInf.cpp
  /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))
  /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...]
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);
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);
  /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/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/bindings/js/
JSHTMLOptionsCollectionCustom.cpp 50 if (!isnan(lengthValue) && !isinf(lengthValue)) {
JSGeolocationCustom.cpp 83 if (!(isinf(timeoutNumber) && (timeoutNumber > 0))) {
98 if (isinf(maximumAgeNumber) && (maximumAgeNumber > 0)) {
  /external/webkit/Source/WebCore/webaudio/
AudioParam.cpp 43 if (!isnan(value) && !isinf(value))
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 90 if (!(isinf(timeoutDouble) && timeoutDouble > 0)) {
113 if (isinf(maximumAgeDouble) && maximumAgeDouble > 0) {
  /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/stlport/src/
num_put_float.cpp 137 static inline bool _Stl_is_inf(double x) { return isinf(x); }
138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; }
139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; }
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); }
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); }
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); }
196 static inline bool _Stl_is_inf(double x) { return isinf(x); }
197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); }
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 137 static inline bool _Stl_is_inf(double x) { return isinf(x); }
138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; }
139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; }
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); }
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); }
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); }
196 static inline bool _Stl_is_inf(double x) { return isinf(x); }
197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); }
    [all...]

Completed in 606 milliseconds

1 2 3 4 5 6 7 8