Home | History | Annotate | Download | only in src

Lines Matching defs:Exponent

39     return DiyFp(Significand(), Exponent());
46 int e = Exponent();
78 int Exponent() const {
125 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
130 // exponent as m_plus.
144 // Note: denormals have the same exponent as the smallest normals.
181 int exponent = diy_fp.e();
184 exponent++;
186 if (exponent >= kMaxExponent) {
189 if (exponent < kDenormalExponent) {
192 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
194 exponent--;
197 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
200 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);