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

1 2 3

  /bionic/libm/src/
s_fdim.c 37 if (isnan(x)) \
39 if (isnan(y)) \
e_scalb.c 38 if (isnan(x)||isnan(fn)) return x*fn;
s_isnan.c 36 (isnan)(double d) function
  /external/webkit/WebCore/css/
WebKitCSSMatrix.cpp 119 if (isnan(x))
121 if (isnan(y))
123 if (isnan(z))
130 if (isnan(scaleX))
132 if (isnan(scaleY))
134 if (isnan(scaleZ))
141 if (isnan(rotX))
144 if (isnan(rotY) && isnan(rotZ)) {
150 if (isnan(rotY)
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8WebKitPointConstructor.cpp 55 if (isnan(x))
60 if (isnan(y))
  /external/webkit/JavaScriptCore/runtime/
DateConstructor.cpp 93 if (isnan(args.at(0).toNumber(exec))
94 || isnan(args.at(1).toNumber(exec))
95 || (numArgs >= 3 && isnan(args.at(2).toNumber(exec)))
96 || (numArgs >= 4 && isnan(args.at(3).toNumber(exec)))
97 || (numArgs >= 5 && isnan(args.at(4).toNumber(exec)))
98 || (numArgs >= 6 && isnan(args.at(5).toNumber(exec)))
99 || (numArgs >= 7 && isnan(args.at(6).toNumber(exec))))
163 if (isnan(args.at(0).toNumber(exec))
164 || isnan(args.at(1).toNumber(exec))
165 || (n >= 3 && isnan(args.at(2).toNumber(exec))
    [all...]
DateInstance.cpp 58 if (isnan(milli))
74 if (isnan(milli))
JSValue.cpp 46 return isnan(d) ? 0.0 : trunc(d);
144 if (isnan(d) || isinf(d)) {
164 if (isnan(d) || isinf(d)) {
  /external/v8/test/cctest/
test-conversions.cc 52 CHECK(isnan(StringToDouble("07.7", ALLOW_HEX | ALLOW_OCTALS)));
53 CHECK(isnan(StringToDouble("07.8", ALLOW_HEX | ALLOW_OCTALS)));
54 CHECK(isnan(StringToDouble("07e8", ALLOW_HEX | ALLOW_OCTALS)));
55 CHECK(isnan(StringToDouble("07e7", ALLOW_HEX | ALLOW_OCTALS)));
87 CHECK(isnan(StringToDouble(" ", NO_FLAGS, OS::nan_value())));
88 CHECK(isnan(StringToDouble("", NO_FLAGS, OS::nan_value())));
89 CHECK(isnan(StringToDouble(" ", NO_FLAGS, OS::nan_value())));
  /external/webkit/WebCore/bindings/js/
JSWebKitPointConstructor.cpp 55 if (isnan(x))
57 if (isnan(y))
JSWebGLArrayBufferConstructor.cpp 56 if (isnan(size))
  /external/webkit/WebCore/html/canvas/
WebGLFloatArray.h 55 if (isnan(value)) // Clamp NaN to 0
79 if (isnan(result)) {
WebGLByteArray.h 58 if (isnan(value)) // Clamp NaN to 0
WebGLIntArray.h 56 if (isnan(value)) // Clamp NaN to 0
WebGLShortArray.h 55 if (isnan(value)) // Clamp NaN to 0
  /dalvik/libcore/luni/src/main/native/
java_lang_Double.c 33 if (isnan(d.d))
  /external/webkit/WebCore/xml/
XPathValue.cpp 79 return m_number != 0 && !isnan(m_number);
128 if (isnan(m_number))
  /bionic/libm/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /ndk/build/platforms/android-3/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /ndk/build/platforms/android-4/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /ndk/build/platforms/android-5/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /ndk/build/platforms/android-5/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /ndk/build/platforms/android-8/arch-arm/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
math.h 109 #define isnan(x) \ macro
111 : (sizeof (x) == sizeof (double)) ? isnan(x) \
132 #define isunordered(x, y) (isnan(x) || isnan(y))
246 int (isnan)(double) __pure2;
  /external/v8/src/
conversions-inl.h 63 if (isnan(x)) return 0;

Completed in 1494 milliseconds

1 2 3