• Home
  • Raw
  • Download

Lines Matching refs:pinf

36     double    pinf  = uprv_getInfinity();
102 double pinf = uprv_getInfinity(); in testMaxMin() local
111 maxMinTest(pinf, ninf, pinf, TRUE); in testMaxMin()
112 maxMinTest(pinf, ninf, ninf, FALSE); in testMaxMin()
115 maxMinTest(pinf, pzero, pinf, TRUE); in testMaxMin()
116 maxMinTest(pinf, pzero, pzero, FALSE); in testMaxMin()
117 maxMinTest(pinf, nzero, pinf, TRUE); in testMaxMin()
118 maxMinTest(pinf, nzero, nzero, FALSE); in testMaxMin()
127 maxMinTest(pinf, nan, nan, TRUE); in testMaxMin()
128 maxMinTest(pinf, nan, nan, FALSE); in testMaxMin()
143 maxMinTest(pinf, DBL_MAX, pinf, TRUE); in testMaxMin()
144 maxMinTest(pinf, -DBL_MAX, pinf, TRUE); in testMaxMin()
145 maxMinTest(pinf, DBL_MIN, pinf, TRUE); in testMaxMin()
146 maxMinTest(pinf, -DBL_MIN, pinf, TRUE); in testMaxMin()
147 maxMinTest(pinf, DBL_MIN, DBL_MIN, FALSE); in testMaxMin()
148 maxMinTest(pinf, -DBL_MIN, -DBL_MIN, FALSE); in testMaxMin()
149 maxMinTest(pinf, DBL_MAX, DBL_MAX, FALSE); in testMaxMin()
150 maxMinTest(pinf, -DBL_MAX, -DBL_MAX, FALSE); in testMaxMin()
243 double pinf = uprv_getInfinity(); in testPositiveInfinity() local
247 if(uprv_isInfinite(pinf) != TRUE) { in testPositiveInfinity()
251 if(uprv_isPositiveInfinity(pinf) != TRUE) { in testPositiveInfinity()
255 if(uprv_isNegativeInfinity(pinf) != FALSE) { in testPositiveInfinity()
259 if((pinf > DBL_MAX) != TRUE) { in testPositiveInfinity()
263 if((pinf > DBL_MIN) != TRUE) { in testPositiveInfinity()
267 if((pinf > ninf) != TRUE) { in testPositiveInfinity()
271 if((pinf > ten) != TRUE) { in testPositiveInfinity()
281 double pinf = uprv_getInfinity(); in testNegativeInfinity() local
305 if((ninf < pinf) != TRUE) { in testNegativeInfinity()
372 double pinf = uprv_getInfinity(); in testIsNaN() local
381 if(uprv_isNaN(pinf) == TRUE) { in testIsNaN()
399 double pinf = uprv_getInfinity(); in NaNGT() local
408 if((nan > pinf) != FALSE) { in NaNGT()
426 double pinf = uprv_getInfinity(); in NaNLT() local
435 if((nan < pinf) != FALSE) { in NaNLT()
453 double pinf = uprv_getInfinity(); in NaNGTE() local
462 if((nan >= pinf) != FALSE) { in NaNGTE()
480 double pinf = uprv_getInfinity(); in NaNLTE() local
489 if((nan <= pinf) != FALSE) { in NaNLTE()
507 double pinf = uprv_getInfinity(); in NaNE() local
516 if((nan == pinf) != FALSE) { in NaNE()
534 double pinf = uprv_getInfinity(); in NaNNE() local
543 if((nan != pinf) != TRUE) { in NaNNE()