Home
last modified time | relevance | path

Searched refs:bi2 (Results 1 – 2 of 2) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DOldBigIntegerTest.java35 BigInteger bi2; field in OldBigIntegerTest
51 bi2 = new BigInteger(70, rand); in test_ConstructorILjava_util_Random()
56 !bi.equals(bi2)); in test_ConstructorILjava_util_Random()
73 BigInteger bi2 = new BigInteger(10, 5, rand); in test_ConstructorIILjava_util_Random() local
76 assertTrue(bi2 + " is negative", bi2.compareTo(BigInteger.ZERO) >= 0); in test_ConstructorIILjava_util_Random()
77 assertTrue(bi2 + " is too big", bi2.compareTo(new BigInteger("1024", 10)) < 0); in test_ConstructorIILjava_util_Random()
311 BigInteger bi2p3 = bi2.add(bi3); in test_addLjava_math_BigInteger()
312 BigInteger bi3p2 = bi3.add(bi2); in test_addLjava_math_BigInteger()
352 bi2 = new BigInteger("4576829475724387584378543764555", 16); in setUp()
DBigIntegerTest.java54 BigInteger bi2; field in BigIntegerTest
88 bi2 = new BigInteger(70, rand); in test_ConstructorILjava_util_Random()
94 !bi.equals(bi2)); in test_ConstructorILjava_util_Random()
220 assertTrue("bi3=bi2", !bi3.equals(bi2)); in test_equalsLjava_lang_Object()
283 BigInteger bi2p3 = bi2.add(bi3); in test_addLjava_math_BigInteger()
284 BigInteger bi3p2 = bi3.add(bi2); in test_addLjava_math_BigInteger()
387 mod = bi2.add(BigInteger.valueOf(j)); in test_modInverseLjava_math_BigInteger()
526 testAllMults(bi2, bi2, bi22); in test_multiplyLjava_math_BigInteger()
528 testAllMults(bi1, bi2, bi12); in test_multiplyLjava_math_BigInteger()
530 testAllMults(bi2, bi3, bi23); in test_multiplyLjava_math_BigInteger()
[all …]