Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance
2384 unsigned dstParts = (srcBits + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD; in tcExtract() local2385 assert(dstParts <= dstCount); in tcExtract()2388 tcAssign(dst, src + firstSrcPart, dstParts); in tcExtract()2391 tcShiftRight(dst, dstParts, shift); in tcExtract()2396 unsigned n = dstParts * APINT_BITS_PER_WORD - shift; in tcExtract()2399 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()2403 dst[dstParts - 1] &= lowBitMask (srcBits % APINT_BITS_PER_WORD); in tcExtract()2407 while (dstParts < dstCount) in tcExtract()2408 dst[dstParts++] = 0; in tcExtract()2502 unsigned srcParts, unsigned dstParts, in tcMultiplyPart() argument[all …]
1829 unsigned srcParts, unsigned dstParts, bool add);