Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp1000 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; in ashrSlowCase() local
1003 unsigned WordsToMove = getNumWords() - WordShift; in ashrSlowCase()
1011 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase()
1015 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase()
1016 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); in ashrSlowCase()
1019 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase()
1028 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
2718 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftLeft() local
2723 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2725 while (Words-- > WordShift) { in tcShiftLeft()
[all …]