Lines Matching refs:pzero
39 double pzero = 0.0;
105 double pzero = 0.0; in testMaxMin() local
115 maxMinTest(pinf, pzero, pinf, TRUE); in testMaxMin()
116 maxMinTest(pinf, pzero, pzero, FALSE); in testMaxMin()
121 maxMinTest(ninf, pzero, pzero, TRUE); in testMaxMin()
122 maxMinTest(ninf, pzero, ninf, FALSE); in testMaxMin()
137 maxMinTest(nan, pzero, nan, TRUE); in testMaxMin()
138 maxMinTest(nan, pzero, nan, FALSE); in testMaxMin()
163 maxMinTest(pzero, DBL_MAX, DBL_MAX, TRUE); in testMaxMin()
164 maxMinTest(pzero, -DBL_MAX, pzero, TRUE); in testMaxMin()
165 maxMinTest(pzero, DBL_MIN, DBL_MIN, TRUE); in testMaxMin()
166 maxMinTest(pzero, -DBL_MIN, pzero, TRUE); in testMaxMin()
167 maxMinTest(pzero, DBL_MIN, pzero, FALSE); in testMaxMin()
168 maxMinTest(pzero, -DBL_MIN, -DBL_MIN, FALSE); in testMaxMin()
169 maxMinTest(pzero, DBL_MAX, pzero, FALSE); in testMaxMin()
170 maxMinTest(pzero, -DBL_MAX, -DBL_MAX, FALSE); in testMaxMin()
324 volatile double pzero = 0.0; in testZero() local
329 if((pzero == nzero) != TRUE) { in testZero()
333 if((pzero > nzero) != FALSE) { in testZero()
337 if((pzero >= nzero) != TRUE) { in testZero()
341 if((pzero < nzero) != FALSE) { in testZero()
345 if((pzero <= nzero) != TRUE) { in testZero()
349 if(uprv_isInfinite(1/pzero) != TRUE) { in testZero()
357 if(uprv_isPositiveInfinity(1/pzero) != TRUE) { in testZero()