Searched refs:WordShift (Results 1 – 1 of 1) sorted by relevance
921 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; in ashrSlowCase() local924 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()936 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()949 WordShift * APINT_WORD_SIZE); in ashrSlowCase()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()2606 std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); in tcShiftLeft()2620 unsigned WordsToMove = Words - WordShift; in tcShiftRight()[all …]