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

1 2 3 4 56 7 8 91011>>

  /external/compiler-rt/test/Unit/
multc3_test.c 35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
mulxc3_test.c 35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
special_function_util.h 106 /// This is a wrapper for the isnan function. Otherwise, for NaN,
107 /// all comparisons result in false. If/when we build a std::isnan
109 /// std::isnan.
113 return std::isnan(__x);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
special_function_util.h 105 /// This is a wrapper for the isnan function. Otherwise, for NaN,
106 /// all comparisons result in false. If/when we build a std::isnan
108 /// std::isnan.
111 { return std::isnan(__x); }
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 95 #define Py_IS_NAN(X) isnan(X)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 95 #define Py_IS_NAN(X) isnan(X)
  /bionic/libm/include/
math.h 96 #define isnan(x) \ macro
98 : (sizeof (x) == sizeof (double)) ? isnan(x) \
119 #define isunordered(x, y) (isnan(x) || isnan(y))
231 int (isnan)(double) __pure2;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackRegion.cpp 105 if (std::isinf(value) || std::isnan(value)) {
130 if (std::isinf(value) || std::isnan(value)) {
145 if (std::isinf(value) || std::isnan(value)) {
160 if (std::isinf(value) || std::isnan(value)) {
175 if (std::isinf(value) || std::isnan(value)) {
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
generator_test.py 85 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
87 def isnan(val): function in function:GeneratorTest.testExtremeDefaultValues
92 return not isnan(val) and isnan(val * 0)
98 self.assertTrue(isnan(message.nan_double))
104 self.assertTrue(isnan(message.nan_float))
message_test.py 58 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
60 def isnan(val): function
65 return not isnan(val) and isnan(val * 0)
167 self.assertTrue(isnan(golden_message.optional_float))
168 self.assertTrue(isnan(golden_message.optional_double))
169 self.assertTrue(isnan(golden_message.repeated_float[0]))
170 self.assertTrue(isnan(golden_message.repeated_double[0]))
179 self.assertTrue(isnan(message.optional_float))
180 self.assertTrue(isnan(message.optional_double)
    [all...]
  /bionic/tests/
math_test.cpp 78 TEST(math, isnan) {
79 ASSERT_FALSE(isnan(123.0f));
80 ASSERT_FALSE(isnan(123.0));
81 ASSERT_TRUE(isnan(nanf("")));
82 ASSERT_TRUE(isnan(nan("")));
775 ASSERT_TRUE(isnan(logb(nan(""))));
791 ASSERT_TRUE(isnan(logbl(nanl(""))));
799 ASSERT_TRUE(isnan(log1p(nan(""))));
813 ASSERT_TRUE(isnan(log1pl(nanl(""))));
842 ASSERT_TRUE(isnan(round(nan(""))))
    [all...]
  /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/core/platform/audio/
AudioResampler.cpp 113 if (std::isnan(rate) || std::isinf(rate) || rate <= 0.0)
DynamicsCompressorKernel.cpp 289 if (std::isnan(m_detectorAverage))
317 if (std::isnan(compressionDiffDb))
345 if (std::isnan(compressionDiffDb))
413 if (std::isnan(detectorAverage))
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTime.h 37 SMILTime(double time) : m_time(time) { ASSERT(!std::isnan(time)); }

Completed in 1368 milliseconds

1 2 3 4 56 7 8 91011>>