Lines Matching refs:BitShift
1004 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD; in ashrSlowCase() local
1013 if (BitShift == 0) { in ashrSlowCase()
1018 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1019 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); in ashrSlowCase()
1022 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
1025 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase()
2714 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftLeft() local
2717 if (BitShift == 0) { in tcShiftLeft()
2721 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2724 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2741 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftRight() local
2745 if (BitShift == 0) { in tcShiftRight()
2749 Dst[i] = Dst[i + WordShift] >> BitShift; in tcShiftRight()
2751 Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift); in tcShiftRight()