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

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dbignum.cc52 ASSERT(kBigitSize >= BitSize(value));
68 int needed_bigits = kUInt64Size / kBigitSize + 1;
72 value = value >> kBigitSize;
139 int needed_bigits = length * 4 / kBigitSize + 1;
145 for (int j = 0; j < kBigitSize / 4; j++) {
200 carry = sum >> kBigitSize;
207 carry = sum >> kBigitSize;
244 exponent_ += shift_amount / kBigitSize;
245 int local_shift = shift_amount % kBigitSize;
259 // The product of a bigit with the factor is of size kBigitSize
272 carry >>= kBigitSize; local
[all...]
H A Dbignum.h106 static const int kBigitSize = 28; member in class:WTF::double_conversion::Bignum
107 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
110 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;
123 // shift_amount must be < kBigitSize.
135 // The Bignum's value equals value(bigits_) * 2^(exponent_ * kBigitSize).
/external/chromium_org/v8/src/
H A Dbignum.cc29 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
249 carry >>= kBigitSize; local
[all...]
H A Dbignum.h81 static const int kBigitSize = 28; member in class:v8::internal::Bignum
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 158 milliseconds