Home
last modified time | relevance | path

Searched refs:high_bits_ (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/
Dfixed-dtoa.cc44 UInt128() : high_bits_(0), low_bits_(0) { } in UInt128()
45 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } in UInt128()
56 accumulator = accumulator + (high_bits_ & kMask32) * multiplicand; in Multiply()
59 accumulator = accumulator + (high_bits_ >> 32) * multiplicand; in Multiply()
60 high_bits_ = (accumulator << 32) + part; in Multiply()
69 high_bits_ = low_bits_; in Shift()
72 low_bits_ = high_bits_; in Shift()
73 high_bits_ = 0; in Shift()
75 high_bits_ <<= -shift_amount; in Shift()
76 high_bits_ += low_bits_ >> (64 + shift_amount); in Shift()
[all …]