Home
last modified time | relevance | path

Searched refs:probablePrime (Results 1 – 3 of 3) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DOldBigIntegerTest.java177 BigInteger a = BigInteger.probablePrime(bitLength, rand); in test_isProbablePrimeI()
178 BigInteger b = BigInteger.probablePrime(bitLength, rand); in test_isProbablePrimeI()
223 BigInteger a = BigInteger.probablePrime(bitLength, rand); in test_probablePrime()
/libcore/luni/src/test/java/libcore/java/math/
DBigIntegerTest.java146 b = BigInteger.probablePrime(128, rand); in test_probablePrime()
150 b = BigInteger.probablePrime(16, rand); in test_probablePrime()
154 b = BigInteger.probablePrime(5, rand); in test_probablePrime()
/libcore/ojluni/src/main/java/java/math/
DBigInteger.java697 @NonNull public static BigInteger probablePrime(int bitLength, @NonNull Random rnd) { in probablePrime() method in BigInteger