Home
last modified time | relevance | path

Searched refs:NegInf (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/subzero/crosstest/
Dtest_fcmp_main.cpp47 static const double NegInf = -1.0 / 0.0; in initializeValues() local
52 assert(std::fpclassify(NegInf) == FP_INFINITE); in initializeValues()
56 assert(NegInf < Zero); in initializeValues()
57 assert(NegInf < PosInf); in initializeValues()
60 FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in initializeValues()
Dtest_cast_main.cpp128 static const float NegInf = -1.0 / 0.0; in testVector() local
132 volatile float Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testVector()
198 static const double NegInf = -1.0 / 0.0; in main() local
202 volatile float ValsF32[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in main()
205 volatile double ValsF64[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in main()
Dtest_arith.def67 #define FP_VALUE_ARRAY(NegInf, PosInf, NegNan, NaN) \
79 0xffffffffffffffffll, NegInf, PosInf, \
Dtest_arith_main.cpp246 static const Type NegInf = -1.0 / 0.0; in testsFp() local
250 volatile Type Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testsFp()
317 static const float NegInf = -1.0 / 0.0; in testsVecFp() local
321 volatile float Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testsVecFp()
Dtest_select_main.cpp72 static const float NegInf = -1.0 / 0.0; in testSelect() local
76 volatile float Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testSelect()
/external/python/cpython3/Lib/json/
Ddecoder.py17 NegInf = float('-inf') variable
47 '-Infinity': NegInf,
/external/python/cpython2/Lib/json/
Ddecoder.py22 NaN, PosInf, NegInf = _floatconstants() variable
50 '-Infinity': NegInf,
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DSimplifyLibCalls.cpp877 Value *NegInf = ConstantFP::getInfinity(CI->getType(), true); in CallOptimizer() local
882 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf); in CallOptimizer()
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1060 Value *NegInf = ConstantFP::getInfinity(CI->getType(), true); in optimizePow() local
1064 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf); in optimizePow()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DAPFloatTest.cpp2898 APFloat NegInf = APFloat::getInf(APFloat::IEEEsingle(), true); in TEST() local
2906 EXPECT_TRUE(NegInf.bitwiseIsEqual(neg(Inf))); in TEST()
2907 EXPECT_TRUE(Inf.bitwiseIsEqual(neg(NegInf))); in TEST()
2908 EXPECT_TRUE(NegInf.bitwiseIsEqual(neg(Inf))); in TEST()
2909 EXPECT_TRUE(Inf.bitwiseIsEqual(neg(NegInf))); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1251 Value *NegInf = ConstantFP::getInfinity(Ty, true); in optimizePow() local
1259 Value *FCmp = B.CreateFCmpOEQ(Base, NegInf, "isinf"); in optimizePow()