Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp78 memset(&U.pVal[1], 0xFF, APINT_WORD_SIZE * (getNumWords() - 1)); in initSlowCase()
88 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase()
101 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray()
152 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in assignSlowCase()
436 numWholeSubWords * APINT_WORD_SIZE); in insertBits()
997 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in sext()
1006 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in sext()
1024 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in zext()
1028 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in zext()
1077 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h83 static constexpr unsigned APINT_WORD_SIZE = sizeof(WordType); variable
86 static constexpr unsigned APINT_BITS_PER_WORD = APINT_WORD_SIZE * CHAR_BIT;
664 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
694 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
1324 memset(U.pVal, -1, getNumWords() * APINT_WORD_SIZE); in setAllBits()
1400 memset(U.pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()