Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1035 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; in ashrSlowCase() local
1038 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()
1050 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1063 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
2687 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2689 while (Words-- > WordShift) { in tcShiftLeft()
2690 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2691 if (Words > WordShift) in tcShiftLeft()
2698 std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); in tcShiftLeft()
2712 unsigned WordsToMove = Words - WordShift; in tcShiftRight()
[all …]