Home
last modified time | relevance | path

Searched refs:y2 (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/test/java/util/EnumMap/
DToArray.java59 Map.Entry[] y2 = m.entrySet().toArray(y1); in testToArray() local
60 Assert.assertTrue(y1 != y2); in testToArray()
61 Assert.assertEquals(y2.length, 2); in testToArray()
62 Assert.assertEquals(y2[0].getKey(), Country.FRENCH); in testToArray()
63 Assert.assertEquals(y2[1].getKey(), Country.POLISH); in testToArray()
/libcore/ojluni/src/test/java/lang/Math/
DCubeRootTests.java180 double y2 = StrictMath.cbrt(d); in testCubeRoot() local
201 err = d - StrictMath.pow(y2, 3); in testCubeRoot()
205 "\tcbrt(d) = " + y2); in testCubeRoot()
208 err_adjacent = StrictMath.pow(Math.nextUp(y2), 3) - d; in testCubeRoot()
210 err_adjacent = StrictMath.pow(Math.nextAfter(y2, 0.0), 3) - d; in testCubeRoot()
215 y2 + "is not as good as adjacent value."); in testCubeRoot()
/libcore/ojluni/src/test/java/util/Timer/
DArgs.java147 final CountDownLatch y2 = new FixedDelayLatch();
154 schedule( t, counter(y2), past, DELAY_MS);
158 check(y2.await(DELAY_MS / 4, MILLISECONDS));
/libcore/ojluni/src/test/java/lang/StrictMath/
DFdlibmTranslit.java165 double t1, t2, y1, y2, w; in compute() local
233 y2 = b - y1; in compute()
237 w = Math.sqrt(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in compute()
/libcore/ojluni/src/main/java/java/lang/
DMath.java1553 long y2 = y & 0xFFFFFFFFL; in multiplyHigh() local
1555 long z2 = x2 * y2; in multiplyHigh()
1556 long t = x1 * y2 + (z2 >>> 32); in multiplyHigh()
/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKPeriod.java526 …public void factory_between_LocalDate(int y1, int m1, int d1, int y2, int m2, int d2, int ye, int … in factory_between_LocalDate() argument
528 LocalDate end = LocalDate.of(y2, m2, d2); in factory_between_LocalDate()
DTCKLocalDate.java1935 …public void test_periodUntil_LocalDate(int y1, int m1, int d1, int y2, int m2, int d2, int ye, int…
1937 LocalDate end = LocalDate.of(y2, m2, d2);
/libcore/ojluni/src/main/java/java/math/
DMutableBigInteger.java2101 MutableBigInteger y2 = oddMod.modInverseMP2(powersOf2);
2111 temp1.multiply(y2, temp2);
DBigInteger.java2944 BigInteger y2 = m1.modInverse(m2); in modPow() local
2947 result = a1.multiply(m2).multiply(y1).add(a2.multiply(m1).multiply(y2)).mod(m); in modPow()
2952 new MutableBigInteger(a2.multiply(m1)).multiply(new MutableBigInteger(y2), t2); in modPow()