Home
last modified time | relevance | path

Searched refs:IsPosInf (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.h136 static bool IsPosInf(const Type x);
175 static bool IsPosInf(const Type /*x*/) { return false; } \
253 static bool IsPosInf(const Type x) { return _fpclass(x) == _FPCLASS_PINF; } \
260 static bool IsPosInf(const Type x) { return ISINF(x) && x > 0; } \
/external/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
Dmessage_test.py71 def IsPosInf(val): function
146 self.assertTrue(IsPosInf(golden_message.optional_float))
147 self.assertTrue(IsPosInf(golden_message.optional_double))
148 self.assertTrue(IsPosInf(golden_message.repeated_float[0]))
149 self.assertTrue(IsPosInf(golden_message.repeated_double[0]))
194 self.assertTrue(IsPosInf(golden_message.packed_float[0]))
195 self.assertTrue(IsPosInf(golden_message.packed_double[0]))
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.h26 XlaOp IsPosInf(XlaOp operand);
Dmath_test.cc80 Tuple(&b, {IsFinite(x), IsInf(x), IsPosInf(x), IsNegInf(x), IsNan(x)}); in TestIsInfOrNan()
207 {IsPosInf, "is_pos_inf"}, in XLA_TEST_F()
Dmath.cc99 XlaOp IsPosInf(XlaOp operand) { in IsPosInf() function
125 return IsPosInf(Abs(operand)); in IsInf()
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc379 if (MathLimits<double>::IsPosInf(value)) return "Infinity"; in DoubleAsString()
/external/protobuf/python/google/protobuf/internal/
Dmessage_test.py103 def IsPosInf(val): function
226 self.assertTrue(IsPosInf(golden_message.optional_float))
227 self.assertTrue(IsPosInf(golden_message.optional_double))
228 self.assertTrue(IsPosInf(golden_message.repeated_float[0]))
229 self.assertTrue(IsPosInf(golden_message.repeated_double[0]))
281 self.assertTrue(IsPosInf(golden_message.packed_float[0]))
282 self.assertTrue(IsPosInf(golden_message.packed_double[0]))
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/IR/
Dchlo_ops.td632 let summary = "IsPosInf predicate";