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 {
88 private static BigInt newBigInt() {
89 BigInt bi = new BigInt();
96 static int cmp(BigInt a, BigInt b) {
101 void putCopy(BigInt from) {
106 BigInt copy() {
107 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/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 165 struct BigInt {
166 BigInt() : sign(0) { }
203 static void multadd(BigInt& b, int m, int a) /* multiply by m and add a */
233 static void s2b(BigInt& b, const char* s, int nd0, int nd, uint32_t y9)
322 static void i2b(BigInt& b, int i)
329 static void mult(BigInt& aRef, const BigInt& bRef)
331 const BigInt* a = &aRef;
332 const BigInt* b = &bRef;
333 BigInt c
    [all...]

Completed in 3503 milliseconds