/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_finite.c | 17 * finite(x) returns 1 is x is finite, else 0; 24 int finite(double x) function
|
e_scalb.c | 38 if (!finite(fn)) {
|
/external/chromium/base/ |
float_util.h | 22 return finite(number) != 0;
|
/external/llvm/projects/sample/autoconf/m4/ |
func_isinf.m4 | 28 [finite], [<ieeefp.h>], 29 [float f; finite(f);]) 31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
|
/external/llvm/lib/Support/ |
IsInf.cpp | 27 static int isinf(double x) { return !finite(x) && x==x; } 35 static int isinf(double x) { return !finite(x) && x==x; }
|
/bionic/libm/upstream-freebsd/lib/msun/bsdsrc/ |
b_exp.c | 48 * finite(x) 67 * for finite argument, only exp(0)=1 is exact. 120 if(finite(x)) return(scalb(1.0,-5000)); 129 return( finite(x) ? scalb(1.0,5000) : x); 165 if(finite(x)) return(scalb(1.0,-5000)); 174 return( finite(x) ? scalb(1.0,5000) : x);
|
b_log.c | 376 else if (!finite(x))
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
pymath.h | 42 extern int finite(double); 134 #define Py_IS_FINITE(X) finite(X)
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
pymath.h | 42 extern int finite(double); 134 #define Py_IS_FINITE(X) finite(X)
|
/external/skia/tests/ |
ScalarTest.cpp | 82 // return true if the float is finite 93 // return true if both floats are finite 163 bool finite = gProc1[k](rec.fValue); local 164 REPORTER_ASSERT(reporter, rec.fIsFinite == finite); 176 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1); local 178 REPORTER_ASSERT(reporter, finite2 == finite);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
imports.h | 211 #elif defined(finite) 212 #define IS_INF_OR_NAN(x) (!finite(x)) 214 #define IS_INF_OR_NAN(x) (!finite(x)) 218 #define IS_INF_OR_NAN(x) (!finite(x))
|
compiler.h | 81 * finite macro. 84 # define finite _finite macro 86 # define finite _finite macro
|
/external/mesa3d/src/mesa/main/ |
imports.h | 211 #elif defined(finite) 212 #define IS_INF_OR_NAN(x) (!finite(x)) 214 #define IS_INF_OR_NAN(x) (!finite(x)) 218 #define IS_INF_OR_NAN(x) (!finite(x))
|
compiler.h | 81 * finite macro. 84 # define finite _finite macro 86 # define finite _finite macro
|
/external/chromium_org/chrome/browser/resources/local_ntp/ |
instant_iframe_validation.js | 17 // Color must be a number, finite, with no fractional part, in the correct
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
mathcalls.h | 191 /* Return 0 if VALUE is finite or NaN, +1 if it 195 /* Return nonzero if VALUE is finite and not NaN. */ 200 /* Return 0 if VALUE is finite or NaN, +1 if it 204 /* Return nonzero if VALUE is finite and not NaN. */ 205 __MATHDECL_1 (int,finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
mathcalls.h | 191 /* Return 0 if VALUE is finite or NaN, +1 if it 195 /* Return nonzero if VALUE is finite and not NaN. */ 200 /* Return 0 if VALUE is finite or NaN, +1 if it 204 /* Return nonzero if VALUE is finite and not NaN. */ 205 __MATHDECL_1 (int,finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
mathcalls.h | 191 /* Return 0 if VALUE is finite or NaN, +1 if it 195 /* Return nonzero if VALUE is finite and not NaN. */ 200 /* Return 0 if VALUE is finite or NaN, +1 if it 204 /* Return nonzero if VALUE is finite and not NaN. */ 205 __MATHDECL_1 (int,finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
|
/development/ndk/platforms/android-3/include/ |
math.h | 292 int finite(double) __pure2;
|
/development/ndk/platforms/android-9/include/ |
math.h | 292 int finite(double) __pure2;
|
/external/stlport/src/ |
num_put_float.cpp | 134 { return !finite(x); } 178 static inline bool _Stl_is_nan_or_inf(double x) { return !finite(x); } 183 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !finite(x); } 184 static bool _Stl_is_inf(double x) { return !finite(x); } [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
num_put_float.cpp | 134 { return !finite(x); } 178 static inline bool _Stl_is_nan_or_inf(double x) { return !finite(x); } 183 static bool _Stl_is_nan_or_inf(double x) { return isnan(x) || !finite(x); } 184 static bool _Stl_is_inf(double x) { return !finite(x); } [all...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/ |
math.h | 292 int finite(double) __pure2;
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/ |
math.h | 292 int finite(double) __pure2;
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/ |
math.h | 292 int finite(double) __pure2;
|