Home
last modified time | relevance | path

Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp2414 unsigned dstParts = (srcBits + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD; in tcExtract() local
2415 assert(dstParts <= dstCount); in tcExtract()
2418 tcAssign(dst, src + firstSrcPart, dstParts); in tcExtract()
2421 tcShiftRight(dst, dstParts, shift); in tcExtract()
2426 unsigned n = dstParts * APINT_BITS_PER_WORD - shift; in tcExtract()
2429 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
2433 dst[dstParts - 1] &= lowBitMask (srcBits % APINT_BITS_PER_WORD); in tcExtract()
2437 while (dstParts < dstCount) in tcExtract()
2438 dst[dstParts++] = 0; in tcExtract()
2532 unsigned srcParts, unsigned dstParts, in tcMultiplyPart() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1873 unsigned srcParts, unsigned dstParts,