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

References

lib/Support/APFloat.cpp
 2758   count = (valueBits + integerPartWidth - 1) / integerPartWidth;
 2760   while (outputDigits && count) {
 2764     if (--count == partsCount)
 2767       part = significand[count] << shift;
 2769     if (count && shift)
 2770       part |= significand[count - 1] >> (integerPartWidth - shift);