HomeSort by relevance Sort by last modified time
    Searched full:isnan (Results 51 - 75 of 904) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/bison/m4/
isnanl.m4 18 dnl The variable gl_func_isnanl set here is used by isnan.m4.
51 [Define if the isnan(long double) function is available in libc.])
65 AC_CACHE_CHECK([whether isnan(long double) can be used without linking with libm],
74 #elif defined isnan
76 # define isnanl(x) isnan ((long double)(x))
88 AC_CACHE_CHECK([whether isnan(long double) can be used with libm],
99 #elif defined isnan
101 # define isnanl(x) isnan ((long double)(x))
132 #elif defined isnan
134 # define isnanl(x) isnan ((long double)(x)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
date.js 56 assertTrue(isNaN(dOverflow.getTime()));
65 assertTrue(isNaN(dUnderflow.getTime()));
85 assertTrue(isNaN(c.getMonth()));
90 assertTrue(isNaN(d.getUTCMonth()));
96 assertTrue(isNaN(e.getDate()));
101 assertTrue(isNaN(f.getUTCDate()));
107 assertTrue(isNaN(g.getHours()));
112 assertTrue(isNaN(h.getUTCHours()));
118 assertTrue(isNaN(g.getMinutes()));
123 assertTrue(isNaN(h.getUTCHours()))
    [all...]
string-charat.js 74 assertTrue(isNaN(s().charCodeAt(-1)));
75 assertTrue(isNaN(s().charCodeAt(len)));
76 assertTrue(isNaN(s().charCodeAt(slowIndexOutOfRange)));
77 assertTrue(isNaN(s().charCodeAt(1/0)));
78 assertTrue(isNaN(s().charCodeAt(-1/0)));
122 assertTrue(isNaN(o.charCodeAt(-1)));
123 assertTrue(isNaN(o.charCodeAt(-1.4)));
124 assertTrue(isNaN(o.charCodeAt(10)));
125 assertTrue(isNaN(o.charCodeAt(slowIndexOutOfRange)));
  /external/v8/test/mjsunit/
date.js 54 assertTrue(isNaN(dOverflow.getTime()));
63 assertTrue(isNaN(dUnderflow.getTime()));
83 assertTrue(isNaN(c.getMonth()));
88 assertTrue(isNaN(d.getUTCMonth()));
94 assertTrue(isNaN(e.getDate()));
99 assertTrue(isNaN(f.getUTCDate()));
105 assertTrue(isNaN(g.getHours()));
110 assertTrue(isNaN(h.getUTCHours()));
116 assertTrue(isNaN(g.getMinutes()));
121 assertTrue(isNaN(h.getUTCHours()))
    [all...]
str-to-num.js 69 assertTrue(isNaN(toNumber(" NaN ")));
197 assertTrue(isNaN(toNumber("junk")), "junk");
198 assertTrue(isNaN(toNumber("100 junk")), "100 junk");
199 assertTrue(isNaN(toNumber("0x100 junk")), "0x100 junk");
200 assertTrue(isNaN(toNumber("100.0 junk")), "100.0 junk");
201 assertTrue(isNaN(toNumber(".1e4 junk")), ".1e4 junk");
202 assertTrue(isNaN(toNumber("Infinity junk")), "Infinity junk");
203 assertTrue(isNaN(toNumber("1e")), "1e");
204 assertTrue(isNaN(toNumber("1e ")), "1e_");
205 assertTrue(isNaN(toNumber("1" + repeat('0', 1000) + 'junk')), "1e1000 junk")
    [all...]
  /external/chromium_org/content/browser/geolocation/
gps_location_provider_linux.cc 151 if (isnan(gps_data_->fix.latitude) || isnan(gps_data_->fix.longitude)) {
159 if (!isnan(gps_data_->fix.epx) && !isnan(gps_data_->fix.epy)) {
161 } else if (isnan(gps_data_->fix.epx) && !isnan(gps_data_->fix.epy)) {
163 } else if (!isnan(gps_data_->fix.epx) && isnan(gps_data_->fix.epy)) {
171 if (gps_data_->fix.mode == MODE_3D && !isnan(gps_data_->fix.altitude)) {
173 if (!isnan(gps_data_->fix.epv)
    [all...]
  /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
  /external/chromium_org/v8/test/webkit/
date-utc-timeclip-expected.txt 31 PASS isNaN(Date.UTC(275760, 8, 13, 0, 0, 0, 1)) is true
32 PASS isNaN(Date.UTC(275760, 8, 14)) is true
35 PASS isNaN(Date.UTC(-271821, 3, 19, 23, 59, 59, 999)) is true
36 PASS isNaN(Date.UTC(-271821, 3, 19)) is true
  /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()));
signaling_NaN.pass.cpp 23 assert(std::isnan(std::numeric_limits<T>::signaling_NaN()));
24 assert(std::isnan(std::numeric_limits<const T>::signaling_NaN()));
25 assert(std::isnan(std::numeric_limits<volatile T>::signaling_NaN()));
26 assert(std::isnan(std::numeric_limits<const volatile T>::signaling_NaN()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
atan.pass.cpp 45 if (std::isnan(real(r)))
46 assert(std::isnan(real(z)));
52 if (std::isnan(imag(r)))
53 assert(std::isnan(imag(z)));
cos.pass.cpp 45 if (std::isnan(real(r)))
46 assert(std::isnan(real(z)));
52 if (std::isnan(imag(r)))
53 assert(std::isnan(imag(z)));
log10.pass.cpp 43 if (std::isnan(real(r)))
44 assert(std::isnan(real(z)));
50 if (std::isnan(imag(r)))
51 assert(std::isnan(imag(z)));
pow_complex_complex.pass.cpp 47 if (std::isnan(real(r)))
48 assert(std::isnan(real(z)));
54 if (std::isnan(imag(r)))
55 assert(std::isnan(imag(z)));
pow_complex_scalar.pass.cpp 47 if (std::isnan(real(r)))
48 assert(std::isnan(real(z)));
53 if (std::isnan(imag(r)))
54 assert(std::isnan(imag(z)));
pow_scalar_complex.pass.cpp 47 if (std::isnan(real(r)))
48 assert(std::isnan(real(z)));
53 if (std::isnan(imag(r)))
54 assert(std::isnan(imag(z)));
sin.pass.cpp 46 if (std::isnan(real(r)))
47 assert(std::isnan(real(z)));
53 if (std::isnan(imag(r)))
54 assert(std::isnan(imag(z)));
tan.pass.cpp 47 if (std::isnan(real(r)))
48 assert(std::isnan(real(z)));
54 if (std::isnan(imag(r)))
55 assert(std::isnan(imag(z)));
  /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;
  /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;
  /external/v8/test/cctest/
test-double.cc 115 TEST(IsNan) {
116 CHECK(Double(OS::nan_value()).IsNan());
118 CHECK(Double(other_nan).IsNan());
119 CHECK(!Double(V8_INFINITY).IsNan());
120 CHECK(!Double(-V8_INFINITY).IsNan());
121 CHECK(!Double(0.0).IsNan());
122 CHECK(!Double(-0.0).IsNan());
123 CHECK(!Double(1.0).IsNan());
124 CHECK(!Double(-1.0).IsNan());
126 CHECK(!Double(min_double64).IsNan());
    [all...]
test-conversions.cc 59 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)));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest 879 bool0630 isnan 0E-2000 -> 0
880 bool0631 isnan -0E-2000 -> 0
881 bool0632 isnan 0E-1008 -> 0
882 bool0633 isnan -0E-1008 -> 0
883 bool0634 isnan 0E-1007 -> 0
884 bool0635 isnan -0E-1007 -> 0
885 bool0636 isnan 0E-1006 -> 0
886 bool0637 isnan -0E-1006 -> 0
887 bool0638 isnan 0E-1000 -> 0
888 bool0639 isnan -0E-1000 ->
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest 879 bool0630 isnan 0E-2000 -> 0
880 bool0631 isnan -0E-2000 -> 0
881 bool0632 isnan 0E-1008 -> 0
882 bool0633 isnan -0E-1008 -> 0
883 bool0634 isnan 0E-1007 -> 0
884 bool0635 isnan -0E-1007 -> 0
885 bool0636 isnan 0E-1006 -> 0
886 bool0637 isnan -0E-1006 -> 0
887 bool0638 isnan 0E-1000 -> 0
888 bool0639 isnan -0E-1000 ->
    [all...]

Completed in 500 milliseconds

1 23 4 5 6 7 8 91011>>