Lines Matching refs:nzero
40 double nzero = 0.0;
42 nzero *= -1;
106 double nzero = 0.0; in testMaxMin() local
108 nzero *= -1; in testMaxMin()
117 maxMinTest(pinf, nzero, pinf, TRUE); in testMaxMin()
118 maxMinTest(pinf, nzero, nzero, FALSE); in testMaxMin()
123 maxMinTest(ninf, nzero, nzero, TRUE); in testMaxMin()
124 maxMinTest(ninf, nzero, ninf, FALSE); in testMaxMin()
139 maxMinTest(nan, nzero, nan, TRUE); in testMaxMin()
140 maxMinTest(nan, nzero, nan, FALSE); in testMaxMin()
173 maxMinTest(nzero, DBL_MAX, DBL_MAX, TRUE); in testMaxMin()
174 maxMinTest(nzero, -DBL_MAX, nzero, TRUE); in testMaxMin()
175 maxMinTest(nzero, DBL_MIN, DBL_MIN, TRUE); in testMaxMin()
176 maxMinTest(nzero, -DBL_MIN, nzero, TRUE); in testMaxMin()
177 maxMinTest(nzero, DBL_MIN, nzero, FALSE); in testMaxMin()
178 maxMinTest(nzero, -DBL_MIN, -DBL_MIN, FALSE); in testMaxMin()
179 maxMinTest(nzero, DBL_MAX, nzero, FALSE); in testMaxMin()
180 maxMinTest(nzero, -DBL_MAX, -DBL_MAX, FALSE); in testMaxMin()
325 volatile double nzero = 0.0; in testZero() local
327 nzero *= -1; in testZero()
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()
353 if(uprv_isInfinite(1/nzero) != TRUE) { in testZero()
361 if(uprv_isNegativeInfinity(1/nzero) != TRUE) { in testZero()