Searched refs:subnormal (Results 1 – 2 of 2) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 1041 double subnormal = StrictMath.scalb(Double.MIN_NORMAL / 3, -25); in test_scalb_DI() local 1042 assertEquals(2.2104123E-316, subnormal); in test_scalb_DI() 1044 assertFalse(Double.MIN_NORMAL / 3 == StrictMath.scalb(subnormal, 25)); in test_scalb_DI() 1193 float subnormal = StrictMath.scalb(Float.MIN_NORMAL / 3, -11); in test_scalb_FI() local 1194 assertEquals(1.913E-42f, subnormal); in test_scalb_FI() 1196 assertFalse(Float.MIN_NORMAL / 3 == StrictMath.scalb(subnormal, 11)); in test_scalb_FI()
|
D | MathTest.java | 1433 double subnormal = Math.scalb(Double.MIN_NORMAL / 3, -25); in test_scalb_DI() local 1434 assertEquals(2.2104123E-316, subnormal); in test_scalb_DI() 1436 assertFalse(Double.MIN_NORMAL / 3 == Math.scalb(subnormal, 25)); in test_scalb_DI() 1581 float subnormal = Math.scalb(Float.MIN_NORMAL / 3, -11); in test_scalb_FI() local 1582 assertEquals(1.913E-42f, subnormal); in test_scalb_FI() 1584 assertFalse(Float.MIN_NORMAL / 3 == Math.scalb(subnormal, 11)); in test_scalb_FI()
|