Home | History | Annotate | Download | only in Support

Lines Matching refs:srcBits

2418 /* Copy the bit vector of width srcBITS from SRC, starting at bit
2420 the least significant bit of DST. All high bits above srcBITS in
2424 unsigned int srcBits, unsigned int srcLSB)
2428 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth;
2438 in DST. If this is less that srcBits, append the rest, else
2441 if (n < srcBits) {
2442 integerPart mask = lowBitMask (srcBits - n);
2445 } else if (n > srcBits) {
2446 if (srcBits % integerPartWidth)
2447 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth);