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

References

lib/Support/APInt.cpp
 2698     std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE);
 2698     std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE);
 2701       Dst[Words] = Dst[Words - WordShift] << BitShift;
 2701       Dst[Words] = Dst[Words - WordShift] << BitShift;
 2703         Dst[Words] |=
 2704           Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift);
 2709   std::memset(Dst, 0, WordShift * APINT_WORD_SIZE);