Lines Matching defs:significand
50 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
51 // have the most significant bit of the significand set.
60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {}
63 // The exponents of both numbers must be the same and the significand of this
64 // must be greater or equal than the significand of other.
112 uint64_t significand = f_;
118 while ((significand & k10MSBits) == 0) {
119 significand <<= 10;
122 while ((significand & kUint64MSB) == 0) {
123 significand <<= 1;
126 f_ = significand;