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

  /external/v8/src/
bignum.cc 36 : bigits_(bigits_buffer_, kBigitCapacity), used_digits_(0), exponent_(0) {
38 bigits_[i] = 0;
55 bigits_[0] = value;
69 bigits_[i] = static_cast<Chunk>(value & kBigitMask);
80 bigits_[i] = other.bigits_[i];
84 bigits_[i] = 0;
146 bigits_[i] = current_bigit;
156 bigits_[used_digits_] = most_significant_bigit;
196 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry
    [all...]
bignum.h 131 Vector<Chunk> bigits_; member in class:v8::internal::Bignum
133 // The Bignum's value equals value(bigits_) * 2^(exponent_ * kBigitSize).

Completed in 739 milliseconds