Lines Matching refs:WordShift
1027 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; in ashrSlowCase() local
1030 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()
1038 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); 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()
1055 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
2667 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftLeft() local
2672 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2674 while (Words-- > WordShift) { in tcShiftLeft()
2675 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2676 if (Words > WordShift) in tcShiftLeft()
2678 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2683 std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); in tcShiftLeft()
2694 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftRight() local
2697 unsigned WordsToMove = Words - WordShift; in tcShiftRight()
2700 std::memmove(Dst, Dst + WordShift, WordsToMove * APINT_WORD_SIZE); 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()
2710 std::memset(Dst + WordsToMove, 0, WordShift * APINT_WORD_SIZE); in tcShiftRight()