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

References

lib/Support/APInt.cpp
  985     if (BitShift == 0) {
  990         U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) |
  991                     (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift));
  994       U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift;
  997           SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift);