Home
last modified time | relevance | path

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

/external/v8/src/
Dfixed-dtoa.cc22 UInt128() : high_bits_(0), low_bits_(0) { } in UInt128()
23 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } in UInt128()
28 accumulator = (low_bits_ & kMask32) * multiplicand; in Multiply()
31 accumulator = accumulator + (low_bits_ >> 32) * multiplicand; in Multiply()
32 low_bits_ = (accumulator << 32) + part; in Multiply()
47 high_bits_ = low_bits_; in Shift()
48 low_bits_ = 0; in Shift()
50 low_bits_ = high_bits_; in Shift()
54 high_bits_ += low_bits_ >> (64 + shift_amount); in Shift()
55 low_bits_ <<= -shift_amount; in Shift()
[all …]