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

  /external/v8/src/
bignum.cc 29 DCHECK(kBigitSize >= BitSize(value));
45 int needed_bigits = kUInt64Size / kBigitSize + 1;
49 value = value >> kBigitSize;
116 int needed_bigits = length * 4 / kBigitSize + 1;
122 for (int j = 0; j < kBigitSize / 4; j++) {
177 carry = sum >> kBigitSize;
184 carry = sum >> kBigitSize;
221 exponent_ += shift_amount / kBigitSize;
222 int local_shift = shift_amount % kBigitSize;
236 // The product of a bigit with the factor is of size kBigitSize + 32
    [all...]
bignum.h 81 static const int kBigitSize = 28;
82 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
85 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;
98 // by must be < kBigitSize.
110 // The Bignum's value equals value(bigits_) * 2^(exponent_ * kBigitSize).

Completed in 68 milliseconds