OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBigitSize
(Results
1 - 4
of
4
) sorted by null
/external/icu/icu4c/source/i18n/
double-conversion-bignum.cpp
63
ASSERT(
kBigitSize
>= BitSize(value));
79
int needed_bigits = kUInt64Size /
kBigitSize
+ 1;
83
value = value >>
kBigitSize
;
149
int needed_bigits = length * 4 /
kBigitSize
+ 1;
155
for (int j = 0; j <
kBigitSize
/ 4; j++) {
210
carry = sum >>
kBigitSize
;
217
carry = sum >>
kBigitSize
;
254
exponent_ += shift_amount /
kBigitSize
;
255
int local_shift = shift_amount %
kBigitSize
;
269
// The product of a bigit with the factor is of size
kBigitSize
+ 32
[
all
...]
double-conversion-bignum.h
121
static const int
kBigitSize
= 28;
122
static const Chunk kBigitMask = (1 <<
kBigitSize
) - 1;
125
static const int kBigitCapacity = kMaxSignificantBits /
kBigitSize
;
138
// shift_amount must be <
kBigitSize
.
150
// The Bignum's value equals value(bigits_) * 2^(exponent_ *
kBigitSize
).
/external/v8/src/
bignum.cc
27
DCHECK_GE(
kBigitSize
, BitSize(value));
43
int needed_bigits = kUInt64Size /
kBigitSize
+ 1;
47
value = value >>
kBigitSize
;
115
int needed_bigits = length * 4 /
kBigitSize
+ 1;
121
for (int j = 0; j <
kBigitSize
/ 4; j++) {
176
carry = sum >>
kBigitSize
;
183
carry = sum >>
kBigitSize
;
220
exponent_ += shift_amount /
kBigitSize
;
221
int local_shift = shift_amount %
kBigitSize
;
235
// The product of a bigit with the factor is of size
kBigitSize
+ 32
[
all
...]
bignum.h
83
static const int
kBigitSize
= 28;
84
static const Chunk kBigitMask = (1 <<
kBigitSize
) - 1;
87
static const int kBigitCapacity = kMaxSignificantBits /
kBigitSize
;
100
// by must be <
kBigitSize
.
112
// The Bignum's value equals value(bigits_) * 2^(exponent_ *
kBigitSize
).
Completed in 1594 milliseconds