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

References

lib/Support/APInt.cpp
 2398   assert(dstParts <= dstCount);
 2401   tcAssign (dst, src + firstSrcPart, dstParts);
 2404   tcShiftRight (dst, dstParts, shift);
 2409   unsigned n = dstParts * APINT_BITS_PER_WORD - shift;
 2412     dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask)
 2412     dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask)
 2416       dst[dstParts - 1] &= lowBitMask (srcBits % APINT_BITS_PER_WORD);
 2420   while (dstParts < dstCount)
 2421     dst[dstParts++] = 0;