Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Ddouble-conversion-bignum.cpp63 ASSERT(kBigitSize >= BitSize(value)); in AssignUInt16()
79 int needed_bigits = kUInt64Size / kBigitSize + 1; in AssignUInt64()
83 value = value >> kBigitSize; in AssignUInt64()
149 int needed_bigits = length * 4 / kBigitSize + 1; in AssignHexString()
155 for (int j = 0; j < kBigitSize / 4; j++) { in AssignHexString()
210 carry = sum >> kBigitSize; in AddBignum()
217 carry = sum >> kBigitSize; in AddBignum()
254 exponent_ += shift_amount / kBigitSize; in ShiftLeft()
255 int local_shift = shift_amount % kBigitSize; in ShiftLeft()
271 ASSERT(kDoubleChunkSize >= kBigitSize + 32 + 1); in MultiplyByUInt32()
[all …]
Ddouble-conversion-bignum.h121 static const int kBigitSize = 28; variable
122 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
125 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;
/external/v8/src/
Dbignum.cc27 DCHECK_GE(kBigitSize, BitSize(value)); in AssignUInt16()
43 int needed_bigits = kUInt64Size / kBigitSize + 1; in AssignUInt64()
47 value = value >> kBigitSize; in AssignUInt64()
115 int needed_bigits = length * 4 / kBigitSize + 1; in AssignHexString()
121 for (int j = 0; j < kBigitSize / 4; j++) { in AssignHexString()
176 carry = sum >> kBigitSize; in AddBignum()
183 carry = sum >> kBigitSize; in AddBignum()
220 exponent_ += shift_amount / kBigitSize; in ShiftLeft()
221 int local_shift = shift_amount % kBigitSize; in ShiftLeft()
237 DCHECK_GE(kDoubleChunkSize, kBigitSize + 32 + 1); in MultiplyByUInt32()
[all …]
Dbignum.h83 static const int kBigitSize = 28; variable
84 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
87 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;