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

1 2

  /external/webkit/JavaScriptCore/wtf/
MathExtras.h 79 #ifndef isinf
80 inline bool isinf(double x) { return !finite(x) && !isnand(x); } function
126 inline bool isinf(double num) { return !_finite(num) && !_isnan(num); } function
160 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
193 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/JavaScriptCore/runtime/
JSValue.cpp 144 if (isnan(d) || isinf(d)) {
164 if (isnan(d) || isinf(d)) {
NumberPrototype.cpp 161 if (isnan(x) || isinf(x))
323 if (isnan(x) || isinf(x))
395 if (args.at(0).isUndefined() || isnan(x) || isinf(x))
JSGlobalObjectFunctions.cpp 314 if (isnan(d) || isinf(d))
335 return jsBoolean(!isnan(n) && !isinf(n));
  /external/webkit/WebCore/bindings/js/
JSGeolocationCustom.cpp 107 if (!(isinf(timeoutNumber) && (timeoutNumber > 0))) {
122 if (isinf(maximumAgeNumber) && (maximumAgeNumber > 0)) {
JSHTMLOptionsCollectionCustom.cpp 50 if (!isnan(lengthValue) && !isinf(lengthValue)) {
  /external/webkit/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 129 if (!(isinf(timeoutDouble) && timeoutDouble > 0)) {
152 if (isinf(maximumAgeDouble) && maximumAgeDouble > 0) {
V8HTMLOptionsCollectionCustom.cpp 103 if (!isnan(v) && !isinf(v)) {
  /external/webkit/WebCore/xml/
XPathValue.cpp 132 if (isinf(m_number))
  /external/stlport/stlport/stl/
_cmath.h 537 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;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 537 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;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
math.h 266 # define isinf(x) \ macro
269 # define isinf(x) \ macro
  /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...]
  /bionic/libm/
Android.mk 4 isinf.c \
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 202 __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
  /bionic/libm/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */
  /development/ndk/platforms/android-3/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */
  /development/ndk/platforms/android-9/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */
  /external/v8/src/
platform.h 48 // On Solaris, to get isinf, INFINITY, fpclassify and other macros one needs
77 int isinf(double x);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
math.h 105 #define isinf(x) \ macro
245 /* int (isinf)(double) __pure2; */

Completed in 906 milliseconds

1 2