Searched refs:is_nan (Results 1 - 25 of 42) sorted by relevance

12

/external/skia/src/utils/
H A DSkFloatUtils.h99 bool is_nan() const { function in class:SkFloatingPoint
115 if (is_nan() || rhs.is_nan()) return false;
/external/skqp/src/utils/
H A DSkFloatUtils.h99 bool is_nan() const { function in class:SkFloatingPoint
115 if (is_nan() || rhs.is_nan()) return false;
/external/tensorflow/tensorflow/core/kernels/
H A Dcheck_numerics_op.cc172 int is_nan = abnormal_detected_host_flat(0);
175 if (is_nan || is_inf) {
178 << abnormal_detected_host_flat.data() << " = {" << is_nan
183 CHECK_GE(is_nan, 0);
185 CHECK_LE(is_nan, 1);
188 if (is_nan && is_inf) {
190 } else if (is_nan) {
/external/tensorflow/tensorflow/python/kernel_tests/distributions/
H A Duniform_test.py238 self.assertTrue(math_ops.is_nan(nans).eval())
243 is_nan = math_ops.is_nan(pdf).eval()
244 self.assertFalse(is_nan[0])
245 self.assertTrue(is_nan[1])
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_float.c153 LLVMValueRef infcheck_src, is_inf, is_nan; local
163 is_nan = lp_build_compare(gallivm, i32_type, PIPE_FUNC_GREATER,
167 is_nan_or_inf = lp_build_or(&i32_bld, is_nan, is_inf);
172 lp_build_and(&i32_bld, is_nan, i32_qnanbit));
/external/tensorflow/tensorflow/python/ops/distributions/
H A Dkullback_leibler.py108 math_ops.reduce_any(math_ops.is_nan(kl_t))),
H A Duniform.py173 math_ops.is_nan(broadcasted_x),
/external/python/cpython3/Modules/_decimal/tests/
H A Ddeccheck.py55 'is_nan', 'is_qnan', 'is_signed', 'is_snan', 'is_zero', 'radix'
100 'context.is_finite', 'context.is_infinite', 'context.is_nan',
444 if t.rc.is_nan() or t.rp.is_nan():
509 if t.cop[0].is_nan() and t.pop[0].is_nan():
518 if t.rc.is_nan() and t.rp.is_nan():
527 if t.rc is None and t.rp.is_nan():
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h316 bool is_nan() const { function in class:testing::internal::FloatingPoint
331 if (is_nan() || rhs.is_nan()) return false;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h414 bool is_nan() const { function in class:testing::internal::FloatingPoint
429 if (is_nan() || rhs.is_nan()) return false;
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h316 bool is_nan() const { function in class:testing::internal::FloatingPoint
331 if (is_nan() || rhs.is_nan()) return false;
/external/tensorflow/tensorflow/contrib/training/python/training/
H A Dsampling_ops.py418 math_ops.is_nan(ratio_l), array_ops.zeros_like(ratio_l), ratio_l)
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h398 bool is_nan() const { function in class:testing::internal::FloatingPoint
413 if (is_nan() || rhs.is_nan()) return false;
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h346 bool is_nan() const { function in class:testing::internal::FloatingPoint
361 if (is_nan() || rhs.is_nan()) return false;
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-internal.h346 bool is_nan() const { function in class:testing::internal::FloatingPoint
361 if (is_nan() || rhs.is_nan()) return false;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h427 bool is_nan() const { function in class:testing::internal::FloatingPoint
442 if (is_nan() || rhs.is_nan()) return false;
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h418 bool is_nan() const { function in class:testing::internal::FloatingPoint
433 if (is_nan() || rhs.is_nan()) return false;
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h346 bool is_nan() const { function in class:testing::internal::FloatingPoint
361 if (is_nan() || rhs.is_nan()) return false;
/external/python/cpython3/Lib/
H A D_pydecimal.py990 elif self.is_nan():
1028 if self.is_nan():
1923 if self.is_nan():
1938 if self.is_nan():
1953 if self.is_nan():
2645 return (self.is_nan() and other.is_nan() or
3168 def is_nan(self): member in class:Decimal
4573 def is_nan(self, a): member in class:Context
4577 >>> ExtendedContext.is_nan(Decima
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_decimal.py215 'isnan':'is_nan',
267 'is_nan',
2705 self.assertRaises(TypeError, D(1).is_nan, context=xc)
3121 d = c.is_nan(Decimal(10))
3122 self.assertEqual(c.is_nan(10), d)
3123 self.assertRaises(TypeError, c.is_nan, '10')
4296 self.assertIs(Decimal("NaN").fma(7, 1).is_nan(), True)
4370 self.assertTrue(q.is_nan() and r.is_nan())
4374 self.assertTrue(q.is_nan() an
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_float.py1003 self.assertTrue(NAN.is_nan())
1004 self.assertFalse(INF.is_nan())
1005 self.assertFalse((0.).is_nan())
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h1579 if (nan_eq_nan_ && lhs.is_nan()) {
1580 return rhs.is_nan();
1592 if (FloatingPoint<FloatType>(rhs_).is_nan()) {
1608 if (FloatingPoint<FloatType>(rhs_).is_nan()) {
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1926 if (actual.is_nan() || expected.is_nan()) {
1927 if (actual.is_nan() && expected.is_nan()) {
1962 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1981 if (FloatingPoint<FloatType>(expected_).is_nan()) {
/external/python/cpython2/Lib/
H A Ddecimal.py950 elif self.is_nan():
2502 return (self.is_nan() and other.is_nan() or
3025 def is_nan(self): member in class:Decimal
4360 def is_nan(self, a): member in class:Context
4364 >>> ExtendedContext.is_nan(Decimal('2.50'))
4366 >>> ExtendedContext.is_nan(Decimal('NaN'))
4368 >>> ExtendedContext.is_nan(Decimal('-sNaN'))
4370 >>> ExtendedContext.is_nan(1)
4374 return a.is_nan()
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h1926 if (actual.is_nan() || expected.is_nan()) {
1927 if (actual.is_nan() && expected.is_nan()) {
1962 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1981 if (FloatingPoint<FloatType>(expected_).is_nan()) {

Completed in 2566 milliseconds

12