/external/protobuf/src/google/protobuf/stubs/ |
D | mathlimits.h | 122 static bool IsInf(const Type x); 161 static bool IsInf(const Type /*x*/) { return false; } \ 228 static bool IsInf(const Type x) { return (_fpclass(x) & (_FPCLASS_NINF | _FPCLASS_PINF)) != 0; } \ 235 static bool IsInf(const Type x) { return isinf(x); } \
|
/external/tensorflow/tensorflow/core/api_def/java_api/ |
D | api_def_IsInf.pbtxt | 2 graph_op_name: "IsInf" 4 name: "math.IsInf"
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | IsInf.cpp | 46 int IsInf(float f) { return isinf(f); } in IsInf() function 47 int IsInf(double d) { return isinf(d); } in IsInf() function
|
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/cmpopts/ |
D | equate.go | 60 return !math.IsNaN(x) && !math.IsNaN(y) && !math.IsInf(x, 0) && !math.IsInf(y, 0)
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | unary_ops.cc | 68 XLAJIT_MAKE_UNARY(IsInf, xla::IsInf(x));
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_IsInf.pbtxt | 2 graph_op_name: "IsInf"
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_IsInf.pbtxt | 2 graph_op_name: "IsInf"
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | literal_comparison.cc | 205 bool IsInf(NativeT val) { in IsInf() function 210 bool IsInf<half>(half val) { in IsInf() function 392 } else if (IsInf(actual) && !IsInf(expected) && error_.fewer_infs_ok) { in CompareValues() 406 } else if (IsInf(expected) || IsInf(actual)) { in CompareValues()
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | hlsl.isfinite.frag.out | 252 26: 8(bool) IsInf 25 270 47: 8(bool) IsInf 46 280 61: 57(bvec2) IsInf 60 290 75: 71(bvec3) IsInf 74
|
D | spv.400.frag.out | 888 561: 428(bool) IsInf 560 902 570: 437(bvec2) IsInf 569 916 579: 446(bvec3) IsInf 578 930 588: 455(bvec4) IsInf 587
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | MathExtras.h | 398 int IsInf(float f); 399 int IsInf(double d);
|
/external/spirv-llvm/test/SPIRV/transcoding/ |
D | relationals.ll | 24 ; CHECK-SPIRV: 4 IsInf [[BoolTypeID]] 30 ; CHECK-SPIRV: 4 IsInf [[BoolVectorTypeID]]
|
D | relationals_half.ll | 24 ; CHECK-SPIRV: 4 IsInf [[BoolTypeID]] 30 ; CHECK-SPIRV: 4 IsInf [[BoolVectorTypeID]]
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
D | math.h | 28 XlaOp IsInf(XlaOp operand);
|
D | math_test.cc | 77 Tuple(&b, {IsFinite(x), IsInf(x), IsPosInf(x), IsNegInf(x), IsNan(x)}); in TestIsInfOrNan() 194 {IsInf, "is_inf"}, in XLA_TEST_F()
|
D | math.cc | 89 XlaOp IsInf(XlaOp operand) { in IsInf() function 405 return Select(IsInf(input), inf_bcast, result); in Lgamma()
|
/external/vixl/src/aarch64/ |
D | logic-aarch64.cc | 3693 if (IsInf(op1) && IsInf(op2) && (op1 != op2)) { in FPAdd() 3709 if (IsInf(op1) && IsInf(op2) && (op1 == op2)) { in FPSub() 3725 if ((IsInf(op1) && (op2 == 0.0)) || (IsInf(op2) && (op1 == 0.0))) { in FPMul() 3738 if ((IsInf(op1) && (op2 == 0.0)) || (IsInf(op2) && (op1 == 0.0))) { in FPMulx() 3753 bool isinf_prod = IsInf(op1) || IsInf(op2); in FPMulAdd() 3755 (IsInf(op1) && (op2 == 0.0)) || // inf * 0.0 in FPMulAdd() 3756 (IsInf(op2) && (op1 == 0.0)) || // 0.0 * inf in FPMulAdd() 3757 (IsInf(a) && isinf_prod && (sign_a != sign_prod)); // inf - inf in FPMulAdd() 3799 if ((IsInf(op1) && IsInf(op2)) || ((op1 == 0.0) && (op2 == 0.0))) { in FPDiv() 3889 if ((IsInf(op1) && (op2 == 0.0)) || ((op1 == 0.0) && (IsInf(op2)))) { in FPRecipStepFused() [all …]
|
/external/spirv-llvm/lib/SPIRV/ |
D | OCLUtil.h | 170 const static char IsInf[] = "isinf"; variable 545 _SPIRV_OP(isinf, IsInf) in init()
|
/external/vixl/src/ |
D | utils-vixl.h | 374 inline bool IsInf(float value) { return std::isinf(value); } in IsInf() function 376 inline bool IsInf(double value) { return std::isinf(value); } in IsInf() function 378 inline bool IsInf(Float16 value) { in IsInf() function
|
/external/golang-protobuf/proto/ |
D | text.go | 468 case math.IsInf(x, 1): 470 case math.IsInf(x, -1):
|
/external/syzkaller/vendor/github.com/golang/protobuf/proto/ |
D | text.go | 468 case math.IsInf(x, 1): 470 case math.IsInf(x, -1):
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVOpCodeEnum.h | 146 _SPIRV_OP(IsInf, 157)
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | utility.cc | 344 if (MathLimits<double>::IsInf(double_value) || in SafeStrToFloat()
|
/external/swiftshader/src/Pipeline/ |
D | ShaderCore.cpp | 417 …Int4 inf_y = IsInf(y2); // Since x2 >= y2, this means x2 == y2 == inf, so we use 45 degrees or pi/4 in arctan() 1194 dst.x = As<Float4>(IsInf(src.x)); in isinf() 1195 dst.y = As<Float4>(IsInf(src.y)); in isinf() 1196 dst.z = As<Float4>(IsInf(src.z)); in isinf() 1197 dst.w = As<Float4>(IsInf(src.w)); in isinf()
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.cpp | 417 …Int4 inf_y = IsInf(y2); // Since x2 >= y2, this means x2 == y2 == inf, so we use 45 degrees or pi/4 in arctan() 1194 dst.x = As<Float4>(IsInf(src.x)); in isinf() 1195 dst.y = As<Float4>(IsInf(src.y)); in isinf() 1196 dst.z = As<Float4>(IsInf(src.z)); in isinf() 1197 dst.w = As<Float4>(IsInf(src.w)); in isinf()
|