Lines Matching refs:pinf
34 double pinf = uprv_getInfinity();
100 double pinf = uprv_getInfinity(); in testMaxMin() local
109 maxMinTest(pinf, ninf, pinf, TRUE); in testMaxMin()
110 maxMinTest(pinf, ninf, ninf, FALSE); in testMaxMin()
113 maxMinTest(pinf, pzero, pinf, TRUE); in testMaxMin()
114 maxMinTest(pinf, pzero, pzero, FALSE); in testMaxMin()
115 maxMinTest(pinf, nzero, pinf, TRUE); in testMaxMin()
116 maxMinTest(pinf, nzero, nzero, FALSE); in testMaxMin()
125 maxMinTest(pinf, nan, nan, TRUE); in testMaxMin()
126 maxMinTest(pinf, nan, nan, FALSE); in testMaxMin()
141 maxMinTest(pinf, DBL_MAX, pinf, TRUE); in testMaxMin()
142 maxMinTest(pinf, -DBL_MAX, pinf, TRUE); in testMaxMin()
143 maxMinTest(pinf, DBL_MIN, pinf, TRUE); in testMaxMin()
144 maxMinTest(pinf, -DBL_MIN, pinf, TRUE); in testMaxMin()
145 maxMinTest(pinf, DBL_MIN, DBL_MIN, FALSE); in testMaxMin()
146 maxMinTest(pinf, -DBL_MIN, -DBL_MIN, FALSE); in testMaxMin()
147 maxMinTest(pinf, DBL_MAX, DBL_MAX, FALSE); in testMaxMin()
148 maxMinTest(pinf, -DBL_MAX, -DBL_MAX, FALSE); in testMaxMin()
241 double pinf = uprv_getInfinity(); in testPositiveInfinity() local
245 if(uprv_isInfinite(pinf) != TRUE) { in testPositiveInfinity()
249 if(uprv_isPositiveInfinity(pinf) != TRUE) { in testPositiveInfinity()
253 if(uprv_isNegativeInfinity(pinf) != FALSE) { in testPositiveInfinity()
257 if((pinf > DBL_MAX) != TRUE) { in testPositiveInfinity()
261 if((pinf > DBL_MIN) != TRUE) { in testPositiveInfinity()
265 if((pinf > ninf) != TRUE) { in testPositiveInfinity()
269 if((pinf > ten) != TRUE) { in testPositiveInfinity()
279 double pinf = uprv_getInfinity(); in testNegativeInfinity() local
303 if((ninf < pinf) != TRUE) { in testNegativeInfinity()
370 double pinf = uprv_getInfinity(); in testIsNaN() local
379 if(uprv_isNaN(pinf) == TRUE) { in testIsNaN()
397 double pinf = uprv_getInfinity(); in NaNGT() local
406 if((nan > pinf) != FALSE) { in NaNGT()
424 double pinf = uprv_getInfinity(); in NaNLT() local
433 if((nan < pinf) != FALSE) { in NaNLT()
451 double pinf = uprv_getInfinity(); in NaNGTE() local
460 if((nan >= pinf) != FALSE) { in NaNGTE()
478 double pinf = uprv_getInfinity(); in NaNLTE() local
487 if((nan <= pinf) != FALSE) { in NaNLTE()
505 double pinf = uprv_getInfinity(); in NaNE() local
514 if((nan == pinf) != FALSE) { in NaNE()
532 double pinf = uprv_getInfinity(); in NaNNE() local
541 if((nan != pinf) != TRUE) { in NaNNE()