Lines Matching full:exponent
62 return DiyFp(Significand(), Exponent());
69 int e = Exponent();
101 int Exponent() const {
154 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
159 // exponent as m_plus.
173 // Note: denormals have the same exponent as the smallest normals.
210 int exponent = diy_fp.e();
213 exponent++;
215 if (exponent >= kMaxExponent) {
218 if (exponent < kDenormalExponent) {
221 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
223 exponent--;
226 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
229 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);