Home
last modified time | relevance | path

Searched refs:IsInf (Results 1 – 25 of 53) sorted by relevance

123

/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.h122 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/
Dapi_def_IsInf.pbtxt2 graph_op_name: "IsInf"
4 name: "math.IsInf"
/external/swiftshader/third_party/LLVM/lib/Support/
DIsInf.cpp46 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/
Dequate.go60 return !math.IsNaN(x) && !math.IsNaN(y) && !math.IsInf(x, 0) && !math.IsInf(y, 0)
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dunary_ops.cc68 XLAJIT_MAKE_UNARY(IsInf, xla::IsInf(x));
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_IsInf.pbtxt2 graph_op_name: "IsInf"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_IsInf.pbtxt2 graph_op_name: "IsInf"
/external/tensorflow/tensorflow/compiler/xla/
Dliteral_comparison.cc205 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/
Dhlsl.isfinite.frag.out252 26: 8(bool) IsInf 25
270 47: 8(bool) IsInf 46
280 61: 57(bvec2) IsInf 60
290 75: 71(bvec3) IsInf 74
Dspv.400.frag.out888 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/
DMathExtras.h398 int IsInf(float f);
399 int IsInf(double d);
/external/spirv-llvm/test/SPIRV/transcoding/
Drelationals.ll24 ; CHECK-SPIRV: 4 IsInf [[BoolTypeID]]
30 ; CHECK-SPIRV: 4 IsInf [[BoolVectorTypeID]]
Drelationals_half.ll24 ; CHECK-SPIRV: 4 IsInf [[BoolTypeID]]
30 ; CHECK-SPIRV: 4 IsInf [[BoolVectorTypeID]]
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.h28 XlaOp IsInf(XlaOp operand);
Dmath_test.cc77 Tuple(&b, {IsFinite(x), IsInf(x), IsPosInf(x), IsNegInf(x), IsNan(x)}); in TestIsInfOrNan()
194 {IsInf, "is_inf"}, in XLA_TEST_F()
Dmath.cc89 XlaOp IsInf(XlaOp operand) { in IsInf() function
405 return Select(IsInf(input), inf_bcast, result); in Lgamma()
/external/vixl/src/aarch64/
Dlogic-aarch64.cc3693 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/
DOCLUtil.h170 const static char IsInf[] = "isinf"; variable
545 _SPIRV_OP(isinf, IsInf) in init()
/external/vixl/src/
Dutils-vixl.h374 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/
Dtext.go468 case math.IsInf(x, 1):
470 case math.IsInf(x, -1):
/external/syzkaller/vendor/github.com/golang/protobuf/proto/
Dtext.go468 case math.IsInf(x, 1):
470 case math.IsInf(x, -1):
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVOpCodeEnum.h146 _SPIRV_OP(IsInf, 157)
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc344 if (MathLimits<double>::IsInf(double_value) || in SafeStrToFloat()
/external/swiftshader/src/Pipeline/
DShaderCore.cpp417 …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/
DShaderCore.cpp417 …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()

123