Lines Matching refs:f_
59 DiyFp() : f_(0), e_(0) {}
60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {}
68 DOUBLE_CONVERSION_ASSERT(f_ >= other.f_);
69 f_ -= other.f_;
88 const uint64_t a = f_ >> 32;
89 const uint64_t b = f_ & kM32;
90 const uint64_t c = other.f_ >> 32;
91 const uint64_t d = other.f_ & kM32;
100 f_ = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32);
111 DOUBLE_CONVERSION_ASSERT(f_ != 0);
112 uint64_t significand = f_;
126 f_ = significand;
136 uint64_t f() const { return f_; }
139 void set_f(uint64_t new_value) { f_ = new_value; }
145 uint64_t f_;