Searched refs:subnormal (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | Double.java | 304 boolean subnormal = (d < DoubleConsts.MIN_NORMAL); in toHexString() 315 answer.append(subnormal ? "0." : "1."); in toHexString() 331 answer.append(subnormal ? in toHexString()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 1105 double subnormal = StrictMath.scalb(Double.MIN_NORMAL / 3, -25); in test_scalb_DI() local 1106 assertEquals(2.2104123E-316, subnormal); in test_scalb_DI() 1108 assertFalse(Double.MIN_NORMAL / 3 == StrictMath.scalb(subnormal, 25)); in test_scalb_DI() 1257 float subnormal = StrictMath.scalb(Float.MIN_NORMAL / 3, -11); in test_scalb_FI() local 1258 assertEquals(1.913E-42f, subnormal); in test_scalb_FI() 1260 assertFalse(Float.MIN_NORMAL / 3 == StrictMath.scalb(subnormal, 11)); in test_scalb_FI()
|
D | MathTest.java | 1523 double subnormal = Math.scalb(Double.MIN_NORMAL / 3, -25); in test_scalb_DI() local 1524 assertEquals(2.2104123E-316, subnormal); in test_scalb_DI() 1526 assertFalse(Double.MIN_NORMAL / 3 == Math.scalb(subnormal, 25)); in test_scalb_DI() 1671 float subnormal = Math.scalb(Float.MIN_NORMAL / 3, -11); in test_scalb_FI() local 1672 assertEquals(1.913E-42f, subnormal); in test_scalb_FI() 1674 assertFalse(Float.MIN_NORMAL / 3 == Math.scalb(subnormal, 11)); in test_scalb_FI()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Formatter.java | 3550 boolean subnormal 3555 if (subnormal) { 3602 if (!subnormal)
|