Lines Matching refs:BitShift
1036 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD; in ashrSlowCase() local
1045 if (BitShift == 0) { in ashrSlowCase()
1050 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1051 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); in ashrSlowCase()
1054 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
1057 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase()
2675 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftLeft() local
2678 if (BitShift == 0) { in tcShiftLeft()
2682 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2685 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2702 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftRight() local
2706 if (BitShift == 0) { in tcShiftRight()
2710 Dst[i] = Dst[i + WordShift] >> BitShift; in tcShiftRight()
2712 Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift); in tcShiftRight()