Searched refs:isnan (Results 1 - 25 of 107) sorted by relevance

12345

/external/llvm/autoconf/m4/
H A Dfunc_isnan.m42 # 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 functio
[all...]
/external/llvm/projects/sample/autoconf/m4/
H A Dfunc_isnan.m42 # 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 functio
[all...]
/external/llvm/lib/Support/
H A DIsNAN.cpp10 // 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); }
/external/bison/lib/
H A Disnanf-nolibm.h18 /* 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))
H A Disnanl-nolibm.h18 /* 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))
H A Disnand-nolibm.h18 /* 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/v8/src/
H A Dwin32-math.cc55 int isnan(double x) { function
68 return isnan(x) || isnan(y) ? 0 : x < y;
74 return isnan(x) || isnan(y) ? 0 : x > y;
H A Dwin32-math.h54 int isnan(double x);
/external/webkit/Source/WebCore/css/
H A DWebKitCSSMatrix.cpp108 if (isnan(x))
110 if (isnan(y))
112 if (isnan(z))
119 if (isnan(scaleX))
121 if (isnan(scaleY))
123 if (isnan(scaleZ))
130 if (isnan(rotX))
133 if (isnan(rotY) && isnan(rotZ)) {
139 if (isnan(rot
[all...]
/external/compiler-rt/test/Unit/
H A Dunorddf2vfp_test.c26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
H A Dunordsf2vfp_test.c26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
H A Dmuldc3_test.c32 if (isnan(creal(x)) && isnan(cimag(x)))
34 if (isnan(creal(x)))
40 if (isnan(cimag(x)))
H A Dmultc3_test.c35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
H A Dmulxc3_test.c35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
/external/webkit/Source/WebCore/bindings/js/
H A DJSWebKitPointCustom.cpp44 if (isnan(x))
46 if (isnan(y))
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebKitPointConstructor.cpp55 if (isnan(x))
60 if (isnan(y))
/external/webkit/Source/JavaScriptCore/runtime/
H A DDateConstructor.cpp101 if (isnan(doubleArguments[0])
102 || isnan(doubleArguments[1])
103 || (numArgs >= 3 && isnan(doubleArguments[2]))
104 || (numArgs >= 4 && isnan(doubleArguments[3]))
105 || (numArgs >= 5 && isnan(doubleArguments[4]))
106 || (numArgs >= 6 && isnan(doubleArguments[5]))
107 || (numArgs >= 7 && isnan(doubleArguments[6])))
181 if (isnan(doubleArguments[0])
182 || isnan(doubleArguments[1])
183 || (n >= 3 && isnan(doubleArgument
[all...]
H A DDateInstance.cpp54 if (isnan(milli))
70 if (isnan(milli))
/external/webkit/Source/WebCore/webaudio/
H A DAudioParam.cpp43 if (!isnan(value) && !isinf(value))
/external/ceres-solver/include/ceres/
H A Dfpclassify.h32 // do not collide with macros. For example, "isnan" in C99 is a macro and hence
60 inline bool IsNaN (double x) { return isnan(x); }
71 return !isnan(x) && !IsInfinite(x);
82 inline bool IsNaN (double x) { return std::isnan(x); }
/external/llvm/utils/release/
H A DfindRegressions-simple.py106 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
109 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]):
112 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
/external/webkit/Source/JavaScriptCore/wtf/
H A DDecimalNumber.h43 ASSERT(!isnan(d) && !isinf(d));
57 ASSERT(!isnan(d) && !isinf(d));
71 ASSERT(!isnan(d) && !isinf(d));
/external/v8/test/cctest/
H A Dtest-conversions.cc59 CHECK(isnan(StringToDouble(&uc, "07.7", ALLOW_HEX | ALLOW_OCTALS)));
60 CHECK(isnan(StringToDouble(&uc, "07.8", ALLOW_HEX | ALLOW_OCTALS)));
61 CHECK(isnan(StringToDouble(&uc, "07e8", ALLOW_HEX | ALLOW_OCTALS)));
62 CHECK(isnan(StringToDouble(&uc, "07e7", ALLOW_HEX | ALLOW_OCTALS)));
101 CHECK(isnan(StringToDouble(&uc, " ", NO_FLAGS, OS::nan_value())));
102 CHECK(isnan(StringToDouble(&uc, "", NO_FLAGS, OS::nan_value())));
103 CHECK(isnan(StringToDouble(&uc, " ", NO_FLAGS, OS::nan_value())));
118 CHECK(isnan(StringToDouble(&uc, " - 1 ", NO_FLAGS)));
119 CHECK(isnan(StringToDouble(&uc, " + 1 ", NO_FLAGS)));
/external/webkit/Source/WebCore/html/canvas/
H A DIntegralTypedArrayBase.h46 if (isnan(value)) // Clamp NaN to 0
/external/webkit/Source/WebCore/xml/
H A DXPathValue.cpp79 return m_number != 0 && !isnan(m_number);
128 if (isnan(m_number))

Completed in 2619 milliseconds

12345