Lines Matching refs:FpUtils

31 import sun.misc.FpUtils;
180 float po2minus = FpUtils.nextAfter(po2,
208 testGetExponentCase(FpUtils.nextAfter(top, 0.0f),
287 double po2minus = FpUtils.nextAfter(po2,
315 testGetExponentCase(FpUtils.nextAfter(top, 0.0),
626 failures+=Tests.test("FpUtils.nextDown(float)",
627 testCases[i][0], FpUtils.nextDown(testCases[i][0]), testCases[i][1]);
662 failures+=Tests.test("FpUtils.nextDown(double)",
663 testCases[i][0], FpUtils.nextDown(testCases[i][0]), testCases[i][1]);
705 failures+=Tests.test("FpUtils.isNaN(float)", testCases[i],
706 FpUtils.isNaN(testCases[i]), (i ==0));
709 failures+=Tests.test("FpUtils.isFinite(float)", testCases[i],
710 FpUtils.isFinite(testCases[i]), (i >= 3));
713 failures+=Tests.test("FpUtils.isInfinite(float)", testCases[i],
714 FpUtils.isInfinite(testCases[i]), (i==1 || i==2));
718 failures+=Tests.test("FpUtils.isUnordered(float, float)", testCases[i],testCases[j],
719 FpUtils.isUnordered(testCases[i],testCases[j]), (i==0 || j==0));
755 failures+=Tests.test("FpUtils.isNaN(double)", testCases[i],
756 FpUtils.isNaN(testCases[i]), (i ==0));
759 failures+=Tests.test("FpUtils.isFinite(double)", testCases[i],
760 FpUtils.isFinite(testCases[i]), (i >= 3));
763 failures+=Tests.test("FpUtils.isInfinite(double)", testCases[i],
764 FpUtils.isInfinite(testCases[i]), (i==1 || i==2));
768 failures+=Tests.test("FpUtils.isUnordered(double, double)", testCases[i],testCases[j],
769 FpUtils.isUnordered(testCases[i],testCases[j]), (i==0 || j==0));
1020 FpUtils.ilogb(Float.MIN_VALUE)-1, // -150
1021 FpUtils.ilogb(Float.MIN_VALUE), // -149
1064 FpUtils.copySign( (scaleFactor>0?infinityF:0.0f), value) );
1097 (FpUtils.ilogb(value) +j > FloatConsts.MAX_EXPONENT ) ?
1098 FpUtils.copySign(infinityF, value) : // overflow
1227 FpUtils.ilogb(Double.MIN_VALUE)-1, // -1076
1228 FpUtils.ilogb(Double.MIN_VALUE), // -1075
1271 FpUtils.copySign( (scaleFactor>0?infinityD:0.0), value) );
1304 (FpUtils.ilogb(value) +j > DoubleConsts.MAX_EXPONENT ) ?
1305 FpUtils.copySign(infinityD, value) : // overflow
1426 expected = FpUtils.scalb(1.0f, i - (FloatConsts.SIGNIFICAND_WIDTH-1));
1446 float po2minus = FpUtils.nextAfter(po2,
1473 testUlpCase(FpUtils.nextAfter(top, 0.0f),
1531 expected = FpUtils.scalb(1.0, i - (DoubleConsts.SIGNIFICAND_WIDTH-1));
1551 double po2minus = FpUtils.nextAfter(po2,
1578 testUlpCase(FpUtils.nextAfter(top, 0.0f),