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

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.cc43 UInt128() : high_bits_(0), low_bits_(0) { }
44 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
49 accumulator = (low_bits_ & kMask32) * multiplicand;
52 accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
53 low_bits_ = (accumulator << 32) + part;
68 high_bits_ = low_bits_;
69 low_bits_ = 0;
71 low_bits_ = high_bits_;
75 high_bits_ += low_bits_ >> (64 + shift_amount);
76 low_bits_ <<
117 uint64_t low_bits_; member in class:WTF::double_conversion::UInt128
[all...]
/external/chromium_org/v8/src/
H A Dfixed-dtoa.cc21 UInt128() : high_bits_(0), low_bits_(0) { }
22 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
27 accumulator = (low_bits_ & kMask32) * multiplicand;
30 accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
31 low_bits_ = (accumulator << 32) + part;
46 high_bits_ = low_bits_;
47 low_bits_ = 0;
49 low_bits_ = high_bits_;
53 high_bits_ += low_bits_ >> (64 + shift_amount);
54 low_bits_ <<
95 uint64_t low_bits_; member in class:v8::internal::UInt128
[all...]

Completed in 389 milliseconds