Home
last modified time | relevance | path

Searched refs:WordShift (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp1027 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; in ashrSlowCase() local
1030 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()
1042 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1055 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
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()
2683 std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); in tcShiftLeft()
2697 unsigned WordsToMove = Words - WordShift; in tcShiftRight()
[all …]