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

  /dalvik/libcore/math/src/main/java/java/math/
BigInt.java 27 * Moreover BigInt objects are mutable and offer efficient in-place-operations.
30 class BigInt
32 // implements Comparable<BigInt>,
42 static BigInt dummy;
46 dummy = new BigInt();
123 private static BigInt newBigInt() {
124 BigInt bi = new BigInt();
131 public static int cmp(BigInt a, BigInt b)
    [all...]
Primality.java 99 BigInt ni = n.bigInt;
109 BigInt startPoint = ni.copy();
110 BigInt probPrime = new BigInt();
113 startPoint.addPositiveInt(BigInt.remainderByPositiveInt(ni, 2) + 1);
123 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
BigInteger.java 58 transient BigInt bigInt;
64 sign = bigInt.sign();
65 if (sign != 0) digits = bigInt.littleEndianIntsMagnitude();
83 if (bigInt == null)
84 System.out.print("Claiming bigIntIsValid BUT bigInt == null, ");
85 else if (bigInt.getNativeBIGNUM() == 0)
86 System.out.print("Claiming bigIntIsValid BUT bigInt.bignum == 0, ");
90 if (bigInt == null) bigInt = new BigInt()
    [all...]
Multiplication.java 96 BigInt bi = val.bigInt.copy();
BigDecimal.java 558 BigInt bi = new BigInt();
858 BigInt bi = Multiplication.multiplyByTenPow(augend.getUnscaledValue(),diffScale).bigInt;
859 bi.add(thisValue.getUnscaledValue().bigInt);
    [all...]
  /external/webkit/JavaScriptCore/wtf/
dtoa.cpp 284 struct BigInt {
285 BigInt() : sign(0) { }
322 static void multadd(BigInt& b, int m, int a) /* multiply by m and add a */
358 static void s2b(BigInt& b, const char* s, int nd0, int nd, uint32_t y9)
458 static void i2b(BigInt& b, int i)
465 static void mult(BigInt& aRef, const BigInt& bRef)
467 const BigInt* a = &aRef;
468 const BigInt* b = &bRef;
469 BigInt c
    [all...]

Completed in 1980 milliseconds