HomeSort by relevance Sort by last modified time
    Searched defs:BigInt (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/java/math/
Primality.java 92 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;
BigInt.java 22 * Moreover BigInt objects are mutable and offer efficient in-place-operations.
24 final class BigInt {
55 private static BigInt newBigInt() {
56 BigInt bi = new BigInt();
62 static int cmp(BigInt a, BigInt b) {
67 void putCopy(BigInt from) {
72 BigInt copy() {
73 BigInt bi = new BigInt()
    [all...]
BigInteger.java 47 private transient BigInt bigInt;
94 BigInteger(BigInt bigInt) {
95 if (bigInt == null || bigInt.getNativeBIGNUM() == 0) {
98 setBigInt(bigInt);
102 BigInt bigInt = new BigInt();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 130 struct BigInt {
131 BigInt() : sign(0) { }
168 static void multadd(BigInt& b, int m, int a) /* multiply by m and add a */
268 static void i2b(BigInt& b, int i)
275 static void mult(BigInt& aRef, const BigInt& bRef)
277 const BigInt* a = &aRef;
278 const BigInt* b = &bRef;
279 BigInt c;
296 const BigInt* tmp = a
    [all...]

Completed in 68 milliseconds