Home
last modified time | relevance | path

Searched refs:kBigitSize (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dbignum.cc50 ASSERT(kBigitSize >= BitSize(value)); in AssignUInt16()
66 int needed_bigits = kUInt64Size / kBigitSize + 1; in AssignUInt64()
70 value = value >> kBigitSize; in AssignUInt64()
137 int needed_bigits = length * 4 / kBigitSize + 1; in AssignHexString()
143 for (int j = 0; j < kBigitSize / 4; j++) { in AssignHexString()
198 carry = sum >> kBigitSize; in AddBignum()
205 carry = sum >> kBigitSize; in AddBignum()
242 exponent_ += shift_amount / kBigitSize; in ShiftLeft()
243 int local_shift = shift_amount % kBigitSize; in ShiftLeft()
259 ASSERT(kDoubleChunkSize >= kBigitSize + 32 + 1); in MultiplyByUInt32()
[all …]
Dbignum.h104 static const int kBigitSize = 28; variable
105 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
108 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;