Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPInt.cpp924 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase() local
925 if (WordsToMove != 0) { in ashrSlowCase()
935 for (unsigned i = 0; i != WordsToMove - 1; ++i) in ashrSlowCase()
940 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
942 U.pVal[WordsToMove - 1] = in ashrSlowCase()
948 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
2620 unsigned WordsToMove = Words - WordShift; in tcShiftRight() local
2623 std::memmove(Dst, Dst + WordShift, WordsToMove * APINT_WORD_SIZE); in tcShiftRight()
2625 for (unsigned i = 0; i != WordsToMove; ++i) { in tcShiftRight()
2627 if (i + 1 != WordsToMove) in tcShiftRight()
[all …]