Searched refs:PosInf (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/subzero/crosstest/ |
D | test_fcmp_main.cpp | 49 static const double PosInf = 1.0 / 0.0; in initializeValues() local 53 assert(std::fpclassify(PosInf) == FP_INFINITE); in initializeValues() 57 assert(NegInf < PosInf); in initializeValues() 58 assert(Zero < PosInf); in initializeValues() 60 FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in initializeValues()
|
D | test_cast_main.cpp | 129 static const float PosInf = 1.0 / 0.0; in testVector() local 132 volatile float Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testVector() 199 static const double PosInf = 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()
|
D | test_arith.def | 67 #define FP_VALUE_ARRAY(NegInf, PosInf, NegNan, NaN) \ 79 0xffffffffffffffffll, NegInf, PosInf, \
|
D | test_arith_main.cpp | 247 static const Type PosInf = 1.0 / 0.0; in testsFp() local 250 volatile Type Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testsFp() 318 static const float PosInf = 1.0 / 0.0; in testsVecFp() local 321 volatile float Values[] = FP_VALUE_ARRAY(NegInf, PosInf, NegNan, Nan); in testsVecFp()
|
D | test_select_main.cpp | 73 static const float PosInf = 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/ |
D | decoder.py | 16 PosInf = float('inf') variable 48 'Infinity': PosInf,
|
/external/python/cpython2/Lib/json/ |
D | decoder.py | 22 NaN, PosInf, NegInf = _floatconstants() variable 51 'Infinity': PosInf,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 1250 Value *PosInf = ConstantFP::getInfinity(Ty); in optimizePow() local 1260 Sqrt = B.CreateSelect(FCmp, PosInf, FAbs); in optimizePow()
|