Lines Matching refs:WordsToMove
1006 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase() local
1007 if (WordsToMove != 0) { in ashrSlowCase()
1014 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase()
1017 for (unsigned i = 0; i != WordsToMove - 1; ++i) in ashrSlowCase()
1022 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
1024 U.pVal[WordsToMove - 1] = in ashrSlowCase()
1025 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase()
1030 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
2743 unsigned WordsToMove = Words - WordShift; in tcShiftRight() local
2746 std::memmove(Dst, Dst + WordShift, WordsToMove * APINT_WORD_SIZE); in tcShiftRight()
2748 for (unsigned i = 0; i != WordsToMove; ++i) { in tcShiftRight()
2750 if (i + 1 != WordsToMove) in tcShiftRight()
2756 std::memset(Dst + WordsToMove, 0, WordShift * APINT_WORD_SIZE); in tcShiftRight()