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

/external/v8/src/
H A Dfixed-dtoa.cc44 UInt128() : high_bits_(0), low_bits_(0) { }
45 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
50 accumulator = (low_bits_ & kMask32) * multiplicand;
53 accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
54 low_bits_ = (accumulator << 32) + part;
69 high_bits_ = low_bits_;
70 low_bits_ = 0;
72 low_bits_ = high_bits_;
76 high_bits_ += low_bits_ >> (64 + shift_amount);
77 low_bits_ <<
118 uint64_t low_bits_; member in class:v8::internal::UInt128
[all...]

Completed in 42 milliseconds