low_bits_          50 src/fixed-dtoa.cc     accumulator = (low_bits_ & kMask32) * multiplicand;
low_bits_          53 src/fixed-dtoa.cc     accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
low_bits_          54 src/fixed-dtoa.cc     low_bits_ = (accumulator << 32) + part;
low_bits_          69 src/fixed-dtoa.cc       high_bits_ = low_bits_;
low_bits_          70 src/fixed-dtoa.cc       low_bits_ = 0;
low_bits_          72 src/fixed-dtoa.cc       low_bits_ = high_bits_;
low_bits_          76 src/fixed-dtoa.cc       high_bits_ += low_bits_ >> (64 + shift_amount);
low_bits_          77 src/fixed-dtoa.cc       low_bits_ <<= -shift_amount;
low_bits_          79 src/fixed-dtoa.cc       low_bits_ >>= shift_amount;
low_bits_          80 src/fixed-dtoa.cc       low_bits_ += high_bits_ << (64 - shift_amount);
low_bits_          93 src/fixed-dtoa.cc       uint64_t part_low = low_bits_ >> power;
low_bits_          97 src/fixed-dtoa.cc       low_bits_ -= part_low << power;
low_bits_         103 src/fixed-dtoa.cc     return high_bits_ == 0 && low_bits_ == 0;
low_bits_         110 src/fixed-dtoa.cc       return static_cast<int>(low_bits_ >> position) & 1;
low_bits_         118 src/fixed-dtoa.cc   uint64_t low_bits_;