Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance
2442 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local2444 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth; in tcExtract()2445 assert(dstParts <= dstCount); in tcExtract()2448 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract()2451 tcShiftRight (dst, dstParts, shift); in tcExtract()2456 n = dstParts * integerPartWidth - shift; in tcExtract()2459 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()2463 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth); in tcExtract()2467 while (dstParts < dstCount) in tcExtract()2468 dst[dstParts++] = 0; in tcExtract()[all …]
1658 unsigned int srcParts, unsigned int dstParts,