Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance
2452 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local2454 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth; in tcExtract()2455 assert(dstParts <= dstCount); in tcExtract()2458 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract()2461 tcShiftRight (dst, dstParts, shift); in tcExtract()2466 n = dstParts * integerPartWidth - shift; in tcExtract()2469 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()2473 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth); in tcExtract()2477 while (dstParts < dstCount) in tcExtract()2478 dst[dstParts++] = 0; in tcExtract()[all …]
1650 unsigned int srcParts, unsigned int dstParts,