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

/external/chromium/base/
H A Dfloat_util.h22 return finite(number) != 0;
/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/skia/tests/
H A DScalarTest.cpp81 // return true if the float is finite
92 // return true if both floats are finite
162 bool finite = gProc1[k](rec.fValue); local
163 REPORTER_ASSERT(reporter, rec.fIsFinite == finite);
175 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1); local
177 REPORTER_ASSERT(reporter, finite2 == finite);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h85 inline bool isfinite(double x) { return finite(x) && !isnand(x); }
91 inline bool isinf(double x) { return !finite(x) && !isnand(x); }
103 inline bool isfinite(double x) { return finite(x); }
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h211 #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))
H A Dcompiler.h81 * finite macro.
84 # define finite _finite macro
86 # define finite _finite macro
/external/mesa3d/src/mesa/main/
H A Dimports.h211 #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))
H A Dcompiler.h81 * finite macro.
84 # define finite _finite macro
86 # 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/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb39 DFA is a class that implements a finite state machine that chooses between
42 Deterministic Finite Automata (DFA) are finite state machines that are capable
/external/iputils/
H A Dping_common.c284 !finite(dbl) || dbl < 0.0 || dbl >= (double)INT_MAX / 1000 - 1.0) {
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex74 Flow labels have finite lifetime and source is not allowed to reuse
/external/valgrind/main/VEX/useful/
H A Dhd_fpu.c344 : (finite(d) ? FP_TAG_VALID : FP_TAG_SPEC) );
/external/bison/
H A Dconfigure21824 /* Test on finite numbers that fails on AIX 5.1. */
21832 /* Test on finite numbers that fails on Mac OS X 10.4, because its frexpl
21844 /* Test on large finite numbers. This fails on BeOS at i = 16322, while
27026 /* Test on finite numbers that fails on AIX 5.1. */
27034 /* Test on finite numbers that fails on Mac OS X 10.4, because its frexpl
27046 /* Test on large finite numbers. This fails on BeOS at i = 16322, while
/external/chromium_org/third_party/libxml/src/
H A Dconfigure12582 for ac_func in finite isnand fp_class class fpclass
/external/llvm/
H A Dconfigure21108 { echo "$as_me:$LINENO: checking for finite in <ieeefp.h>" >&5
21109 echo $ECHO_N "checking for finite in <ieeefp.h>... $ECHO_C" >&6; }
21130 float f; finite(f);
/external/llvm/projects/sample/
H A Dconfigure19693 { echo "$as_me:$LINENO: checking for finite in <ieeefp.h>" >&5
19694 echo $ECHO_N "checking for finite in <ieeefp.h>... $ECHO_C" >&6; }
19714 float f; finite(f);

Completed in 1655 milliseconds