Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance
2459 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local2461 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth; in tcExtract()2462 assert(dstParts <= dstCount); in tcExtract()2465 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract()2468 tcShiftRight (dst, dstParts, shift); in tcExtract()2473 n = dstParts * integerPartWidth - shift; in tcExtract()2476 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()2480 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth); in tcExtract()2484 while (dstParts < dstCount) in tcExtract()2485 dst[dstParts++] = 0; in tcExtract()[all …]
1491 unsigned int srcParts, unsigned int dstParts,