/external/tensorflow/tensorflow/core/kernels/ |
D | check_numerics_op.cc | 184 int is_nan = abnormal_detected_host_flat(0); in ComputeAsync() local 187 if (is_nan || is_inf) { in ComputeAsync() 190 << abnormal_detected_host_flat.data() << " = {" << is_nan in ComputeAsync() 195 CHECK_GE(is_nan, 0); in ComputeAsync() 197 CHECK_LE(is_nan, 1); in ComputeAsync() 200 if (is_nan && is_inf) { in ComputeAsync() 202 } else if (is_nan) { in ComputeAsync()
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_IsNan.pbtxt | 4 name: "math.is_nan" 7 name: "debugging.is_nan" 11 name: "is_nan"
|
/external/skqp/src/utils/ |
D | SkFloatUtils.h | 99 bool is_nan() const { 115 if (is_nan() || rhs.is_nan()) return false;
|
/external/skia/src/utils/ |
D | SkFloatUtils.h | 99 bool is_nan() const { 115 if (is_nan() || rhs.is_nan()) return false;
|
/external/v8/src/ |
D | boxed-float.h | 35 bool is_nan() const { in is_nan() function 74 bool is_nan() const { in is_nan() function
|
/external/tensorflow/tensorflow/python/kernel_tests/distributions/ |
D | uniform_test.py | 240 self.assertTrue(self.evaluate(math_ops.is_nan(nans))) 245 is_nan = self.evaluate(math_ops.is_nan(pdf)) 246 self.assertFalse(is_nan[0]) 247 self.assertTrue(is_nan[1])
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_format_float.c | 153 LLVMValueRef infcheck_src, is_inf, is_nan; in lp_build_float_to_smallfloat() local 163 is_nan = lp_build_compare(gallivm, i32_type, PIPE_FUNC_GREATER, in lp_build_float_to_smallfloat() 167 is_nan_or_inf = lp_build_or(&i32_bld, is_nan, is_inf); in lp_build_float_to_smallfloat() 172 lp_build_and(&i32_bld, is_nan, i32_qnanbit)); in lp_build_float_to_smallfloat()
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | deccheck.py | 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/tensorflow/tensorflow/contrib/sparsemax/python/ops/ |
D | sparsemax_loss.py | 61 math_ops.logical_or(sparsemax > 0, math_ops.is_nan(sparsemax)),
|
D | sparsemax.py | 90 math_ops.equal(k_z, 0), math_ops.is_nan(z_cumsum[:, -1])),
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | kullback_leibler.py | 117 math_ops.reduce_any(math_ops.is_nan(kl_t))),
|
D | uniform.py | 181 math_ops.is_nan(broadcasted_x),
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-internal.h | 398 bool is_nan() const { in is_nan() function 413 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 418 bool is_nan() const { in is_nan() function 433 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 427 bool is_nan() const { in is_nan() function 442 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-internal.h | 346 bool is_nan() const { in is_nan() function 361 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 346 bool is_nan() const { in is_nan() function 361 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
D | gtest-internal.h | 346 bool is_nan() const { in is_nan() function 361 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/deqp-deps/glslang/SPIRV/ |
D | hex_float.h | 596 bool is_nan = 599 !is_nan && 610 if (is_nan) {
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | hex_float.h | 666 bool is_nan = 669 !is_nan && 680 if (is_nan) {
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | hex_float.h | 666 bool is_nan = 669 !is_nan && 680 if (is_nan) {
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-internal.h | 334 bool is_nan() const { in is_nan() function 349 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | sampling_ops.py | 421 math_ops.is_nan(ratio_l), array_ops.zeros_like(ratio_l), ratio_l)
|
/external/googletest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 323 bool is_nan() const { in is_nan() function 338 if (is_nan() || rhs.is_nan()) return false; in AlmostEquals()
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 949 elif self.is_nan(): 987 if self.is_nan(): 1882 if self.is_nan(): 1897 if self.is_nan(): 1912 if self.is_nan(): 2604 return (self.is_nan() and other.is_nan() or 3127 def is_nan(self): member in Decimal 4532 def is_nan(self, a): member in Context 4546 return a.is_nan()
|