Lines Matching refs:nzero
38 double nzero = 0.0;
40 nzero *= -1;
104 double nzero = 0.0; in testMaxMin() local
106 nzero *= -1; in testMaxMin()
115 maxMinTest(pinf, nzero, pinf, TRUE); in testMaxMin()
116 maxMinTest(pinf, nzero, nzero, FALSE); in testMaxMin()
121 maxMinTest(ninf, nzero, nzero, TRUE); in testMaxMin()
122 maxMinTest(ninf, nzero, ninf, FALSE); in testMaxMin()
137 maxMinTest(nan, nzero, nan, TRUE); in testMaxMin()
138 maxMinTest(nan, nzero, nan, FALSE); in testMaxMin()
171 maxMinTest(nzero, DBL_MAX, DBL_MAX, TRUE); in testMaxMin()
172 maxMinTest(nzero, -DBL_MAX, nzero, TRUE); in testMaxMin()
173 maxMinTest(nzero, DBL_MIN, DBL_MIN, TRUE); in testMaxMin()
174 maxMinTest(nzero, -DBL_MIN, nzero, TRUE); in testMaxMin()
175 maxMinTest(nzero, DBL_MIN, nzero, FALSE); in testMaxMin()
176 maxMinTest(nzero, -DBL_MIN, -DBL_MIN, FALSE); in testMaxMin()
177 maxMinTest(nzero, DBL_MAX, nzero, FALSE); in testMaxMin()
178 maxMinTest(nzero, -DBL_MAX, -DBL_MAX, FALSE); in testMaxMin()
323 volatile double nzero = 0.0; in testZero() local
325 nzero *= -1; in testZero()
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()
351 if(uprv_isInfinite(1/nzero) != TRUE) { in testZero()
359 if(uprv_isNegativeInfinity(1/nzero) != TRUE) { in testZero()