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

1 2

  /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/libcxx/test/re/re.def/defns.regex.finite.state.machine/
Android.mk 17 test_makefile := external/libcxx/test/re/re.def/defns.regex.finite.state.machine/Android.mk
19 test_name := re/re.def/defns.regex.finite.state.machine/nothing_to_do
  /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))
b_tgamma.c 71 * finite x ~> 171.63: return +Inf and raise overflow;
147 } else if (!finite(x))
  /external/chromium_org/third_party/skia/tests/
ScalarTest.cpp 92 // return true if the float is finite
103 // return true if both floats are finite
173 bool finite = gProc1[k](rec.fValue); local
174 REPORTER_ASSERT(reporter, rec.fIsFinite == finite);
186 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1); local
188 REPORTER_ASSERT(reporter, finite2 == finite);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 213 #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))
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
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 39 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/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls.js 155 // The number of iterations may not be finite within a timestep
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2443.js 76 // 2) check for non-finite receiver, on which it returns,
  /external/chromium_org/v8/third_party/fdlibm/
fdlibm.js 600 // for finite argument, only expm1(0)=0 is exact.
630 // Filter out huge and non-finite argument
731 // only sinh(0)=0 is exact for finite x.
783 // only cosh(0)=1 is exact for finite x.
  /bionic/libm/include/
math.h 286 int finite(double) __pure2;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 135 // JSON numbers must be finite. Encode non-finite numbers as null.
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 69 inline bool isfinite(double x) { return finite(x); }
  /external/libpng/contrib/libtests/
tarith.c 85 int finite = 0; local
116 ++finite;
260 printf("Tested %d finite values, %d non-finite, %d OK (%d failed) %d minor "
261 "arithmetic errors\n", finite, nonfinite, ok, failcount, minorarith);
  /bionic/tests/
math_test.cpp 237 TEST(math, finite) {
238 ASSERT_TRUE(finite(123.0));
239 ASSERT_FALSE(finite(HUGE_VAL));
    [all...]
  /external/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js 261 // JSON numbers must be finite. Encode non-finite numbers as null.
  /external/ltrace/etc/
libm.so.conf 304 int finite(double);
  /development/ndk/platforms/android-13/include/
math.h 293 int finite(double) __NDK_FPABI_MATH__ __pure2;

Completed in 999 milliseconds

1 2