Searched refs:dstParts (Results 1 – 2 of 2) sorted by relevance
2419 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local2421 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth; in tcExtract()2422 assert(dstParts <= dstCount); in tcExtract()2425 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract()2428 tcShiftRight (dst, dstParts, shift); in tcExtract()2433 n = dstParts * integerPartWidth - shift; in tcExtract()2436 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()2440 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth); in tcExtract()2444 while (dstParts < dstCount) in tcExtract()2445 dst[dstParts++] = 0; in tcExtract()[all …]
1512 unsigned int srcParts, unsigned int dstParts,