HomeSort by relevance Sort by last modified time
    Searched refs:low_bits_ (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 44 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_ <<= -shift_amount
118 uint64_t low_bits_; member in class:WTF::double_conversion::UInt128
    [all...]
  /external/chromium_org/v8/src/
fixed-dtoa.cc 44 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_ <<= -shift_amount
118 uint64_t low_bits_; member in class:v8::internal::UInt128
    [all...]
  /external/v8/src/
fixed-dtoa.cc 44 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_ <<= -shift_amount
118 uint64_t low_bits_; member in class:v8::internal::UInt128
    [all...]

Completed in 1312 milliseconds