reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APFloat.cpp
 1978   shift = toSemantics.precision - fromSemantics.precision;
 1995   if (shift < 0 && isFiniteNonZero()) {
 1999     if (exponentChange < shift)
 2000       exponentChange = shift;
 2002       shift -= exponentChange;
 2008   if (shift < 0 && (isFiniteNonZero() || category==fcNaN))
 2009     lostFraction = shiftRight(significandParts(), oldPartCount, -shift);
 2035   if (shift > 0 && (isFiniteNonZero() || category==fcNaN))
 2036     APInt::tcShiftLeft(significandParts(), newPartCount, shift);