Lines Matching refs:WordShift

921   unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD;  in ashrSlowCase()  local
924 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()
932 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); 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()
949 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
2590 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftLeft() local
2595 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2597 while (Words-- > WordShift) { in tcShiftLeft()
2598 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2599 if (Words > WordShift) in tcShiftLeft()
2601 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2606 std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); in tcShiftLeft()
2617 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftRight() local
2620 unsigned WordsToMove = Words - WordShift; in tcShiftRight()
2623 std::memmove(Dst, Dst + WordShift, WordsToMove * APINT_WORD_SIZE); 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()
2633 std::memset(Dst + WordsToMove, 0, WordShift * APINT_WORD_SIZE); in tcShiftRight()