Searched refs:APINT_WORD_SIZE (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 87 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 100 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 151 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in assignSlowCase() 407 numWholeSubWords * APINT_WORD_SIZE); in insertBits() 966 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in sext() 975 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in sext() 993 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in zext() 997 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in zext() 1046 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase() 1063 WordShift * APINT_WORD_SIZE); in ashrSlowCase() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 85 APINT_WORD_SIZE = sizeof(WordType), enumerator 87 APINT_BITS_PER_WORD = APINT_WORD_SIZE * CHAR_BIT 644 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 674 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 1304 memset(U.pVal, -1, getNumWords() * APINT_WORD_SIZE); in setAllBits() 1381 memset(U.pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()
|