HomeSort by relevance Sort by last modified time
    Searched refs:bigits_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
bignum.cc 14 : bigits_(bigits_buffer_, kBigitCapacity), used_digits_(0), exponent_(0) {
16 bigits_[i] = 0;
34 bigits_[0] = value;
48 bigits_[i] = static_cast<Chunk>(value & kBigitMask);
59 bigits_[i] = other.bigits_[i];
63 bigits_[i] = 0;
125 bigits_[i] = current_bigit;
135 bigits_[used_digits_] = most_significant_bigit;
175 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry
    [all...]
bignum.h 108 Vector<Chunk> bigits_; member in class:v8::internal::Bignum
110 // The Bignum's value equals value(bigits_) * 2^(exponent_ * kBigitSize).

Completed in 73 milliseconds