Searched refs:finite (Results 1 - 12 of 12) sorted by relevance

/external/chromium/base/
H A Dfloat_util.h22 return finite(number) != 0;
/external/llvm/autoconf/m4/
H A Dfunc_isinf.m428 [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/projects/sample/autoconf/m4/
H A Dfunc_isinf.m428 [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/
H A DIsInf.cpp27 static int isinf(double x) { return !finite(x) && x==x; }
35 static int isinf(double x) { return !finite(x) && x==x; }
/external/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h87 inline bool isfinite(double x) { return finite(x) && !isnand(x); }
90 inline bool isinf(double x) { return !finite(x) && !isnand(x); }
101 inline bool isfinite(double x) { return finite(x); }
/external/mesa3d/src/mesa/main/
H A Dimports.h213 #elif defined(finite)
214 #define IS_INF_OR_NAN(x) (!finite(x))
216 #define IS_INF_OR_NAN(x) (!finite(x))
220 #define IS_INF_OR_NAN(x) (!finite(x))
H A Dcompiler.h106 * finite macro.
109 # define finite _finite macro
111 # define finite _finite macro
/external/stlport/src/
H A Dnum_put_float.cpp134 { 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); }
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp104 if (!finite(coord))
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex74 Flow labels have finite lifetime and source is not allowed to reuse
/external/llvm/
H A Dconfigure19824 { echo "$as_me:$LINENO: checking for finite in <ieeefp.h>" >&5
19825 echo $ECHO_N "checking for finite in <ieeefp.h>... $ECHO_C" >&6; }
19845 float f; finite(f);
/external/llvm/projects/sample/
H A Dconfigure19773 { echo "$as_me:$LINENO: checking for finite in <ieeefp.h>" >&5
19774 echo $ECHO_N "checking for finite in <ieeefp.h>... $ECHO_C" >&6; }
19794 float f; finite(f);

Completed in 600 milliseconds