OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BigitLength
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
bignum.cc
191
EnsureCapacity(1 + Max(
BigitLength
(), other.
BigitLength
()) - exponent_);
495
if (
BigitLength
() < other.
BigitLength
()) {
505
while (
BigitLength
() > other.
BigitLength
()) {
516
ASSERT(
BigitLength
() == other.
BigitLength
());
583
int needed_chars = (
BigitLength
() - 1) * kHexCharsPerBigit +
611
if (index >=
BigitLength
()) return 0
[
all
...]
bignum.h
123
//
BigitLength
includes the "hidden" digits encoded in the exponent.
124
int
BigitLength
() const { return used_digits_ + exponent_; }
Completed in 70 milliseconds