Home
last modified time | relevance | path

Searched refs:IsNegInf (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.h124 static bool IsNegInf(const Type x);
163 static bool IsNegInf(const Type /*x*/) { return false; }
230 static bool IsNegInf(const Type x) { return _fpclass(x) == _FPCLASS_NINF; }
237 static bool IsNegInf(const Type x) { return isinf(x) && x < 0; }
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.h27 XlaOp IsNegInf(XlaOp operand);
Dmath_test.cc77 Tuple(&b, {IsFinite(x), IsInf(x), IsPosInf(x), IsNegInf(x), IsNan(x)}); in TestIsInfOrNan()
196 {IsNegInf, "is_neg_inf"}, in XLA_TEST_F()
Dmath.cc78 XlaOp IsNegInf(XlaOp operand) { in IsNegInf() function
/external/protobuf/python/google/protobuf/internal/
Dmessage_test.py87 def IsNegInf(val): function
178 self.assertTrue(IsNegInf(golden_message.optional_float))
179 self.assertTrue(IsNegInf(golden_message.optional_double))
180 self.assertTrue(IsNegInf(golden_message.repeated_float[0]))
181 self.assertTrue(IsNegInf(golden_message.repeated_double[0]))
222 self.assertTrue(IsNegInf(golden_message.packed_float[0]))
223 self.assertTrue(IsNegInf(golden_message.packed_double[0]))
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc327 if (MathLimits<double>::IsNegInf(value)) return "-Infinity"; in DoubleAsString()