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

  /external/v8/src/
bignum.cc 50 ASSERT(kBigitSize >= BitSize(value));
66 int needed_bigits = kUInt64Size / kBigitSize + 1;
70 value = value >> kBigitSize;
137 int needed_bigits = length * 4 / kBigitSize + 1;
143 for (int j = 0; j < kBigitSize / 4; j++) {
198 carry = sum >> kBigitSize;
205 carry = sum >> kBigitSize;
242 exponent_ += shift_amount / kBigitSize;
243 int local_shift = shift_amount % kBigitSize;
257 // The product of a bigit with the factor is of size kBigitSize + 32
    [all...]
bignum.h 104 static const int kBigitSize = 28;
105 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
108 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;
121 // by must be < kBigitSize.
133 // The Bignum's value equals value(bigits_) * 2^(exponent_ * kBigitSize).

Completed in 77 milliseconds