Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp1002 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase() local
1003 if (WordsToMove != 0) { in ashrSlowCase()
1010 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase()
1013 for (unsigned i = 0; i != WordsToMove - 1; ++i) in ashrSlowCase()
1018 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
1020 U.pVal[WordsToMove - 1] = in ashrSlowCase()
1021 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase()
1026 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
2747 unsigned WordsToMove = Words - WordShift; in tcShiftRight() local
2750 std::memmove(Dst, Dst + WordShift, WordsToMove * APINT_WORD_SIZE); in tcShiftRight()
[all …]