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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-2671.js 37 assertFalse(isNaN(a[i]));
  /external/v8/src/
win32-math.h 54 int isnan(double x);
  /external/bison/lib/
frexp.c 42 # define ISNAN isnanl
50 # define ISNAN isnand
65 if (ISNAN (x) || x + x == x)
math.in.h 2171 # undef isnan macro
2172 # define isnan macro
2186 # undef isnan macro
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Decimal.h 73 bool isNaN() const { return m_formatClass == ClassNaN; }
128 bool isNaN() const { return m_data.isNaN(); }
CalculationValue.cpp 68 if (std::isnan(result))
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
log.pass.cpp 70 else if (std::isfinite(x[i].real()) && std::isnan(x[i].imag()))
72 assert(std::isnan(r.real()));
73 assert(std::isnan(r.imag()));
  /external/bison/darwin-lib/
math.h 2483 # undef isnan macro
2484 # define isnan macro
2489 # undef isnan macro
2490 # define isnan macro
2498 # undef isnan macro
    [all...]
  /external/bison/linux-lib/
math.h 2483 # undef isnan macro
2484 # define isnan macro
2489 # undef isnan macro
2490 # define isnan macro
2498 # undef isnan macro
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_float.py 6 from math import isinf, isnan, copysign, ldexp namespace
239 self.assertTrue(isnan(pow_op(-INF, NAN)))
240 self.assertTrue(isnan(pow_op(-2.0, NAN)))
241 self.assertTrue(isnan(pow_op(-1.0, NAN)))
242 self.assertTrue(isnan(pow_op(-0.5, NAN)))
243 self.assertTrue(isnan(pow_op(-0.0, NAN)))
244 self.assertTrue(isnan(pow_op(0.0, NAN)))
245 self.assertTrue(isnan(pow_op(0.5, NAN)))
246 self.assertTrue(isnan(pow_op(2.0, NAN)))
247 self.assertTrue(isnan(pow_op(INF, NAN))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_float.py 6 from math import isinf, isnan, copysign, ldexp namespace
239 self.assertTrue(isnan(pow_op(-INF, NAN)))
240 self.assertTrue(isnan(pow_op(-2.0, NAN)))
241 self.assertTrue(isnan(pow_op(-1.0, NAN)))
242 self.assertTrue(isnan(pow_op(-0.5, NAN)))
243 self.assertTrue(isnan(pow_op(-0.0, NAN)))
244 self.assertTrue(isnan(pow_op(0.0, NAN)))
245 self.assertTrue(isnan(pow_op(0.5, NAN)))
246 self.assertTrue(isnan(pow_op(2.0, NAN)))
247 self.assertTrue(isnan(pow_op(INF, NAN))
    [all...]
  /external/chromium_org/native_client_sdk/src/web/
index.html 13 if (isNaN(substr)) {
40 if (isNaN(numA) == false && isNaN(numB) == false) {
50 if (isNaN(numA) == false) return -1
51 if (isNaN(numB) == false) return 1
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/
cases.h 185 if (std::isnan(x.real()) && std::isnan(x.imag()))
187 if (std::isnan(x.real()))
193 if (std::isnan(x.imag()))
210 if (std::isnan(x))
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 92 // otherwise we can get into an infinite loop if isnan is
93 // a #define for "isnan" !
100 #ifdef isnan
101 return isnan(t);
138 #elif defined(isnan)
466 return (std::isnan)(x);
519 template<class T> bool (isnan)(T x) function in namespace:boost::math
527 #ifdef isnan
528 template <> inline bool isnan BOOST_NO_MACRO_EXPAND<float>(float t){ return ::boost::math_detail::is_nan_helper(t, boost::true_type()); }
529 template <> inline bool isnan BOOST_NO_MACRO_EXPAND<double>(double t){ return ::boost::math_detail::is_nan_helper(t, boost::true (…)
    [all...]
  /libcore/luni/src/main/java/java/lang/
Double.java 257 public boolean isNaN() {
258 return isNaN(value);
270 public static boolean isNaN(double d) {
364 if (isNaN(double1)) {
365 if (isNaN(double2)) {
369 } else if (isNaN(double2)) {
Float.java 266 public boolean isNaN() {
267 return isNaN(value);
279 public static boolean isNaN(float f) {
370 if (isNaN(float1)) {
371 if (isNaN(float2)) {
375 } else if (isNaN(float2)) {
  /external/chromium_org/v8/tools/profviz/
profviz.js 246 if (isNaN(input_distortion)) {
256 if (isNaN(input_start)) input_start = undefined;
259 if (isNaN(input_end)) input_end = undefined;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
MathTest.java 123 assertTrue("Should return Double.NaN", Double.isNaN(Math
192 assertTrue("The result should be NaN.", Double.isNaN(Math.copySign(
214 assertTrue("The result should be NaN.", Double.isNaN(Math.copySign(
264 assertTrue("The result should be NaN.", Float.isNaN(Math.copySign(
285 assertTrue("The result should be NaN.", Float.isNaN(Math.copySign(
322 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
363 assertTrue("Should return NaN", Double.isNaN(Math.expm1(Double.NaN)));
528 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
530 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
574 assertTrue(Double.isNaN(Math.log10(Double.NaN)))
    [all...]
  /external/ceres-solver/internal/ceres/
jet_test.cc 330 EXPECT_TRUE(IsNaN(a));
341 EXPECT_TRUE(IsNaN(a));
352 EXPECT_FALSE(IsNaN(a));
363 EXPECT_FALSE(IsNaN(a));
  /external/chromium_org/content/renderer/media/
websourcebuffer_impl.cc 13 DCHECK(!base::IsNaN(time));
  /external/chromium_org/media/audio/
audio_power_monitor.cc 57 if (base::IsNaN(average_power_this_channel)) {
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.cpp 165 if (std::isnan(firstKeyframe->offset()))
170 if (lastKeyframe && std::isnan(lastKeyframe->offset()))
176 ASSERT(!std::isnan((*iter)->offset()));
226 ASSERT(!std::isnan(m_offset));
  /external/chromium_org/third_party/WebKit/Source/wtf/
IntegralTypedArrayBase.h 46 if (std::isnan(value)) // Clamp NaN to 0
  /external/chromium_org/third_party/icu/source/test/intltest/
dtfmtrtts.h 70 //while(TPlatformUtilities::isInfinite(a) || TPlatformUtilities::isNaN(a))
  /external/chromium_org/third_party/skia/src/animator/
SkAnimatorScript.h 58 static bool IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params,

Completed in 815 milliseconds

1 2 3 4 5 6 78 91011>>