Lines Matching refs:pzero
37 double pzero = 0.0;
103 double pzero = 0.0; in testMaxMin() local
113 maxMinTest(pinf, pzero, pinf, TRUE); in testMaxMin()
114 maxMinTest(pinf, pzero, pzero, FALSE); in testMaxMin()
119 maxMinTest(ninf, pzero, pzero, TRUE); in testMaxMin()
120 maxMinTest(ninf, pzero, ninf, FALSE); in testMaxMin()
135 maxMinTest(nan, pzero, nan, TRUE); in testMaxMin()
136 maxMinTest(nan, pzero, nan, FALSE); in testMaxMin()
161 maxMinTest(pzero, DBL_MAX, DBL_MAX, TRUE); in testMaxMin()
162 maxMinTest(pzero, -DBL_MAX, pzero, TRUE); in testMaxMin()
163 maxMinTest(pzero, DBL_MIN, DBL_MIN, TRUE); in testMaxMin()
164 maxMinTest(pzero, -DBL_MIN, pzero, TRUE); in testMaxMin()
165 maxMinTest(pzero, DBL_MIN, pzero, FALSE); in testMaxMin()
166 maxMinTest(pzero, -DBL_MIN, -DBL_MIN, FALSE); in testMaxMin()
167 maxMinTest(pzero, DBL_MAX, pzero, FALSE); in testMaxMin()
168 maxMinTest(pzero, -DBL_MAX, -DBL_MAX, FALSE); in testMaxMin()
322 volatile double pzero = 0.0; in testZero() local
327 if((pzero == nzero) != TRUE) { in testZero()
331 if((pzero > nzero) != FALSE) { in testZero()
335 if((pzero >= nzero) != TRUE) { in testZero()
339 if((pzero < nzero) != FALSE) { in testZero()
343 if((pzero <= nzero) != TRUE) { in testZero()
347 if(uprv_isInfinite(1/pzero) != TRUE) { in testZero()
355 if(uprv_isPositiveInfinity(1/pzero) != TRUE) { in testZero()