Lines Matching refs:e_
59 DiyFp() : f_(0), e_(0) {}
60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {}
67 DOUBLE_CONVERSION_ASSERT(e_ == other.e_);
99 e_ += other.e_ + 64;
113 int32_t exponent = e_;
127 e_ = exponent;
137 int32_t e() const { return e_; }
140 void set_e(int32_t new_value) { e_ = new_value; }
146 int32_t e_;