Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance
2414 unsigned dstParts = (srcBits + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD; in tcExtract() local2415 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 …]
1873 unsigned srcParts, unsigned dstParts,