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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/autoconf/m4/
func_isnan.m4 2 # This function determines if the isnan function is available on this
7 [isnan], [<math.h>],
8 [float f; isnan(f);])
11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
15 [isnan], [<cmath>],
16 [float f; isnan(f);])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
22 [std::isnan], [<cmath>],
23 [float f; std::isnan(f);])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>]
    [all...]
  /external/llvm/projects/sample/autoconf/m4/
func_isnan.m4 2 # This function determines if the isnan function is available on this
7 [isnan], [<math.h>],
8 [float f; isnan(f);])
11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
15 [isnan], [<cmath>],
16 [float f; isnan(f);])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
22 [std::isnan], [<cmath>],
23 [float f; std::isnan(f);])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>]
    [all...]
  /external/llvm/lib/Support/
IsNAN.cpp 1 //===-- IsNAN.cpp ---------------------------------------------------------===//
10 // Platform-independent wrapper around C99 isnan().
22 using std::isnan;
25 #define isnan _isnan
27 # error "Don't know how to get isnan()"
31 int IsNAN(float f) { return isnan(f); }
32 int IsNAN(double d) { return isnan(d); }
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fdim.c 37 if (isnan(x)) \
39 if (isnan(y)) \
e_scalb.c 37 if (isnan(x)||isnan(fn)) return x*fn;
s_isnan.c 35 #undef isnan macro
37 isnan(double d) function
  /external/bison/lib/
isnanf-nolibm.h 18 /* Get declaration of isnan macro or (older) isnanf function. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
24 # elif defined isnan
26 # define isnanf(x) isnan ((float)(x))
isnanl-nolibm.h 18 /* Get declaration of isnan macro or (older) isnanl function. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
24 # elif defined isnan
26 # define isnanl(x) isnan ((long double)(x))
isnand-nolibm.h 18 /* Get declaration of isnan macro. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
26 # define isnand(x) isnan ((double)(x))
  /external/chromium_org/v8/src/
win32-math.cc 48 int isnan(double x) { function in namespace:std
67 return isnan(x) || isnan(y) ? 0 : x < y;
73 return isnan(x) || isnan(y) ? 0 : x > y;
win32-math.h 53 int isnan(double x);
  /external/v8/src/
win32-math.cc 55 int isnan(double x) { function
68 return isnan(x) || isnan(y) ? 0 : x < y;
74 return isnan(x) || isnan(y) ? 0 : x > y;
win32-math.h 54 int isnan(double x);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
cosh.pass.cpp 51 assert(std::isnan(r.real()));
54 else if (x[i].real() == 0 && std::isnan(x[i].imag()))
56 assert(std::isnan(r.real()));
61 assert(std::isnan(r.real()));
62 assert(std::isnan(r.imag()));
64 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
66 assert(std::isnan(r.real()));
67 assert(std::isnan(r.imag()));
86 assert(std::isnan(r.imag()));
88 else if (std::isinf(x[i].real()) && std::isnan(x[i].imag())
    [all...]
exp.pass.cpp 49 assert(std::isnan(r.real()));
50 assert(std::isnan(r.imag()));
52 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
54 assert(std::isnan(r.real()));
55 assert(std::isnan(r.imag()));
72 assert(std::isnan(r.imag()));
74 else if (std::isinf(x[i].real()) && x[i].real() < 0 && std::isnan(x[i].imag()))
79 else if (std::isinf(x[i].real()) && x[i].real() > 0 && std::isnan(x[i].imag()))
82 assert(std::isnan(r.imag()));
84 else if (std::isnan(x[i].real()) && x[i].imag() == 0
    [all...]
tanh.pass.cpp 52 assert(std::isnan(r.real()));
53 assert(std::isnan(r.imag()));
55 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
57 assert(std::isnan(r.real()));
58 assert(std::isnan(r.imag()));
71 else if (std::isinf(x[i].real()) && std::isnan(x[i].imag()))
76 else if (std::isnan(x[i].real()) && x[i].imag() == 0)
78 assert(std::isnan(r.real()));
82 else if (std::isnan(x[i].real()) && std::isfinite(x[i].imag()))
84 assert(std::isnan(r.real()))
    [all...]
sinh.pass.cpp 53 assert(std::isnan(r.imag()));
57 assert(std::isnan(r.real()));
58 assert(std::isnan(r.imag()));
60 else if (x[i].real() == 0 && std::isnan(x[i].imag()))
63 assert(std::isnan(r.imag()));
65 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
67 assert(std::isnan(r.real()));
68 assert(std::isnan(r.imag()));
87 assert(std::isnan(r.imag()));
89 else if (std::isinf(x[i].real()) && std::isnan(x[i].imag())
    [all...]
sqrt.pass.cpp 55 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
57 assert(std::isnan(r.real()));
58 assert(std::isnan(r.imag()));
74 else if (std::isinf(x[i].real()) && x[i].real() < 0 && std::isnan(x[i].imag()))
76 assert(std::isnan(r.real()));
79 else if (std::isinf(x[i].real()) && x[i].real() > 0 && std::isnan(x[i].imag()))
83 assert(std::isnan(r.imag()));
85 else if (std::isnan(x[i].real()) && (std::isfinite(x[i].imag()) || std::isnan(x[i].imag())))
87 assert(std::isnan(r.real()))
    [all...]
  /external/compiler-rt/test/Unit/
unorddf2vfp_test.c 26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
unordsf2vfp_test.c 26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSMatrix.cpp 115 if (std::isnan(x))
117 if (std::isnan(y))
119 if (std::isnan(z))
126 if (std::isnan(scaleX))
128 if (std::isnan(scaleY))
130 if (std::isnan(scaleZ))
137 if (std::isnan(rotX))
140 if (std::isnan(rotY) && std::isnan(rotZ)) {
146 if (std::isnan(rotY)
    [all...]
  /external/chromium_org/base/
float_util.h 26 inline bool IsNaN(const Float& number) {
28 return std::isnan(number) != 0;
  /external/chromium_org/third_party/libxml/src/include/
win32config.h 56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
  /external/chromium_org/third_party/libxml/win32/
config.h 56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
quiet_NaN.pass.cpp 23 assert(std::isnan(std::numeric_limits<T>::quiet_NaN()));
24 assert(std::isnan(std::numeric_limits<const T>::quiet_NaN()));
25 assert(std::isnan(std::numeric_limits<volatile T>::quiet_NaN()));
26 assert(std::isnan(std::numeric_limits<const volatile T>::quiet_NaN()));

Completed in 334 milliseconds

1 2 3 4 5 6 7 8 91011>>