Searched refs:BigInt (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/math/
H A DBigInt.java24 * Moreover BigInt objects are mutable and offer efficient in-place-operations.
26 final class BigInt { class
29 BigInt.class.getClassLoader(), NativeBN.getNativeFinalizer(), NativeBN.size());
50 private static BigInt newBigInt() {
51 BigInt bi = new BigInt();
58 static int cmp(BigInt a, BigInt b) {
63 void putCopy(BigInt from) {
68 BigInt cop
[all...]
H A DBigInteger.java47 private transient BigInt bigInt;
94 BigInteger(BigInt bigInt) {
102 BigInt bigInt = new BigInt();
177 BigInt prime = new BigInt();
183 setBigInt(BigInt.generatePrimeDefault(bitLength));
216 BigInt bigInt = new BigInt();
239 BigInt bigIn
[all...]
H A DPrimality.java92 BigInt ni = n.getBigInt();
102 BigInt startPoint = ni.copy();
103 BigInt probPrime = new BigInt();
106 startPoint.addPositiveInt(BigInt.remainderByPositiveInt(ni, 2) + 1);
116 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
H A DMultiplication.java92 BigInt bi = val.getBigInt().copy();
H A DBigDecimal.java495 BigInt bi = new BigInt();
767 BigInt bi = Multiplication.multiplyByTenPow(augend.getUnscaledValue(),diffScale).getBigInt();
/libcore/
H A Dnon_openjdk_java_files.mk67 luni/src/main/java/java/math/BigInt.java \

Completed in 72 milliseconds