Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1003 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; in ashrSlowCase() local
1006 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()
1018 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1031 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
2718 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2720 while (Words-- > WordShift) { in tcShiftLeft()
2721 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2722 if (Words > WordShift) in tcShiftLeft()
2729 std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); in tcShiftLeft()
2743 unsigned WordsToMove = Words - WordShift; in tcShiftRight()
[all …]