Lines Matching refs:BitShift
1028 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD; in ashrSlowCase() local
1037 if (BitShift == 0) { in ashrSlowCase()
1042 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1043 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); in ashrSlowCase()
1046 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
1049 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase()
2668 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftLeft() local
2671 if (BitShift == 0) { in tcShiftLeft()
2675 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2678 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2695 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftRight() local
2699 if (BitShift == 0) { in tcShiftRight()
2703 Dst[i] = Dst[i + WordShift] >> BitShift; in tcShiftRight()
2705 Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift); in tcShiftRight()