Searched refs:i1 (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/test/java/tests/api/java/math/
H A DBigIntegerTest.java953 BigInteger i1 = element[0], i2 = element[1];
954 BigInteger res = i1.and(i2);
955 assertTrue("symmetry of and", res.equals(i2.and(i1)));
956 int len = Math.max(i1.bitLength(), i2.bitLength()) + 66;
958 assertTrue("and", (i1.testBit(i) && i2.testBit(i)) == res
969 BigInteger i1 = element[0], i2 = element[1];
970 BigInteger res = i1.or(i2);
971 assertTrue("symmetry of or", res.equals(i2.or(i1)));
972 int len = Math.max(i1.bitLength(), i2.bitLength()) + 66;
974 assertTrue("or", (i1
1099 testDiv(BigInteger i1, BigInteger i2) argument
1168 testAllMults(BigInteger i1, BigInteger i2, BigInteger ans) argument
1179 testAllDivs(BigInteger i1, BigInteger i2) argument
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldAndroidMonitorTest.java413 int i1; field in class:OldAndroidMonitorTest.CompareAndExchange.Worker
416 Worker(int i1, int i2) { argument
417 super("Worker(" + i1 + ", " + i2 + ")");
418 this.i1 = i1;
437 if (CompareAndExchange.toggle == i1) {
441 this.sleep(5 + i1);
442 CompareAndExchange.toggle = test = i1;
445 // System.out.println("Worker(" + i1 + ", " +
/libcore/luni/src/test/java/tests/java/security/
H A DIdentityTest.java58 IdentityStub i1 = new IdentityStub("testEquals");
62 i1, Boolean.TRUE,
63 new IdentityStub(i1.getName()), Boolean.TRUE
67 assertEquals(value[k+1], new Boolean(i1.equals(value[k])));
68 if (Boolean.TRUE.equals(value[k+1])) assertEquals(i1.hashCode(), value[k].hashCode());
72 assertEquals(i1.identityEquals(i2), i1.equals(i2));
74 assertEquals(i1.identityEquals(i3), i1.equals(i3));
281 // Identity i1
[all...]
/libcore/luni/src/main/java/java/math/
H A DConversion.java210 for (int i1 = tempLen - 1; i1 >= 0; i1--) {
212 + (temp[i1] & 0xFFFFFFFFL);
214 temp[i1] = (int) res;
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DCipherSuite.java809 int i1 = b1 & 0xff;
811 CipherSuite cs = getCipherSuiteByCode(0, i1, i2);
815 return new CipherSuite("UNKNOWN_" + i1 + "_" + i2, false, 0, null,
824 int i1 = b1 & 0xff;
827 CipherSuite cs = getCipherSuiteByCode(i1, i2, i3);
831 return new CipherSuite("UNKNOWN_" + i1 + "_" + i2 + "_" + i3, false, 0,
835 private static CipherSuite getCipherSuiteByCode(int i1, int i2, int i3) { argument
837 if (i1 == 0x00 && i2 == 0x00) {
839 } else if (i1 == 0x00 && i2 == 0xc0) {
/libcore/luni/src/main/java/java/lang/
H A DStrictMath.java500 public static int max(int i1, int i2) { argument
501 return Math.max(i1, i2);
570 public static int min(int i1, int i2) { argument
571 return Math.min(i1, i2);
H A DMath.java506 public static native int max(int i1, int i2); argument
582 public static native int min(int i1, int i2); argument
/libcore/luni/src/test/java/tests/api/java/util/
H A DLinkedListTest.java354 ListIterator i1 = ll.listIterator();
377 elm = i1.next();

Completed in 1869 milliseconds