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

1 2 3 4 5

  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_pow.c 46 if(finite(y)&&y<0.0)
50 if(!finite(z)) {
51 if(finite(x)&&finite(y)) {
58 if(z==0.0&&finite(x)&&finite(y))
s_ldexp.c 25 if(!finite(value)||value==0.0) return value;
27 if(!finite(value)||value==0.0) errno = ERANGE;
w_sinh.c 34 if(!finite(z)&&finite(x)) {
s_finite.c 19 * finite(x) returns 1 is x is finite, else 0;
27 finite(double x) function
w_exp.c 38 if(finite(x)) {
  /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/swiftshader/third_party/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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymath.h 42 extern int finite(double);
132 #define Py_IS_FINITE(X) finite(X)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymath.h 42 extern int finite(double);
132 #define Py_IS_FINITE(X) finite(X)
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymath.h 42 extern int finite(double);
134 #define Py_IS_FINITE(X) finite(X)
  /prebuilts/gdb/linux-x86/include/python2.7/
pymath.h 42 extern int finite(double);
134 #define Py_IS_FINITE(X) 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 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/skqp/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/python/cpython2/Include/
pymath.h 42 extern int finite(double);
132 #define Py_IS_FINITE(X) finite(X)
  /external/tensorflow/tensorflow/core/kernels/
summary_image_op.cc 199 bool finite = true; local
202 finite = false;
206 if (finite) {
229 bool finite = true; local
232 finite = false;
236 if (finite) {
  /prebuilts/go/darwin-x86/src/math/
pow.go 26 // Pow(±0, y) = +Inf for finite y < 0 and not an odd integer
28 // Pow(±0, y) = +0 for finite y > 0 and not an odd integer
37 // Pow(x, y) = NaN for finite x < 0 and finite non-integer y
  /prebuilts/go/linux-x86/src/math/
pow.go 26 // Pow(±0, y) = +Inf for finite y < 0 and not an odd integer
28 // Pow(±0, y) = +0 for finite y > 0 and not an odd integer
37 // Pow(x, y) = NaN for finite x < 0 and finite non-integer y
  /external/mesa3d/src/mesa/main/
imports.h 123 * finite macro.
126 # define finite _finite macro
135 #elif defined(finite)
136 #define IS_INF_OR_NAN(x) (!finite(x))
140 #define IS_INF_OR_NAN(x) (!finite(x))
  /external/tensorflow/tensorflow/contrib/tensorboard/db/
summary_converter.cc 132 bool finite = true; local
135 finite = false;
139 if (finite) {
162 bool finite = true; local
165 finite = false;
169 if (finite) {
  /prebuilts/go/darwin-x86/src/math/big/
floatmarsh.go 28 if x.form == finite {
52 if x.form == finite {
85 if z.form == finite {
  /prebuilts/go/linux-x86/src/math/big/
floatmarsh.go 28 if x.form == finite {
52 if x.form == finite {
85 if z.form == finite {

Completed in 504 milliseconds

1 2 3 4 5