Lines Matching full:shiftcount
2678 unsigned int n, shiftCount;
2683 shiftCount = tcMSB(rhs, parts) + 1;
2684 if (shiftCount == 0)
2687 shiftCount = parts * integerPartWidth - shiftCount;
2688 n = shiftCount / integerPartWidth;
2689 mask = (integerPart) 1 << (shiftCount % integerPartWidth);
2692 tcShiftLeft(srhs, parts, shiftCount);
2707 if (shiftCount == 0)
2709 shiftCount--;