Lines Matching refs:BitShift
922 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD; in ashrSlowCase() local
931 if (BitShift == 0) { in ashrSlowCase()
936 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
937 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); in ashrSlowCase()
940 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
943 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase()
2591 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftLeft() local
2594 if (BitShift == 0) { in tcShiftLeft()
2598 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2601 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2618 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftRight() local
2622 if (BitShift == 0) { in tcShiftRight()
2626 Dst[i] = Dst[i + WordShift] >> BitShift; in tcShiftRight()
2628 Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift); in tcShiftRight()