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

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 43 UInt128() : high_bits_(0), low_bits_(0) { }
44 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
55 accumulator = accumulator + (high_bits_ & kMask32) * multiplicand;
58 accumulator = accumulator + (high_bits_ >> 32) * multiplicand;
59 high_bits_ = (accumulator << 32) + part;
68 high_bits_ = low_bits_;
71 low_bits_ = high_bits_;
72 high_bits_ = 0;
74 high_bits_ <<= -shift_amount;
75 high_bits_ += low_bits_ >> (64 + shift_amount)
116 uint64_t high_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) { }
56 accumulator = accumulator + (high_bits_ & kMask32) * multiplicand;
59 accumulator = accumulator + (high_bits_ >> 32) * multiplicand;
60 high_bits_ = (accumulator << 32) + part;
69 high_bits_ = low_bits_;
72 low_bits_ = high_bits_;
73 high_bits_ = 0;
75 high_bits_ <<= -shift_amount;
76 high_bits_ += low_bits_ >> (64 + shift_amount)
117 uint64_t high_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) { }
56 accumulator = accumulator + (high_bits_ & kMask32) * multiplicand;
59 accumulator = accumulator + (high_bits_ >> 32) * multiplicand;
60 high_bits_ = (accumulator << 32) + part;
69 high_bits_ = low_bits_;
72 low_bits_ = high_bits_;
73 high_bits_ = 0;
75 high_bits_ <<= -shift_amount;
76 high_bits_ += low_bits_ >> (64 + shift_amount)
117 uint64_t high_bits_; member in class:v8::internal::UInt128
    [all...]

Completed in 927 milliseconds