Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/Support/
DAPInt.cpp88 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase()
102 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray()
155 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
380 numWholeSubWords * APINT_WORD_SIZE); in insertBits()
915 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in sext()
924 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in sext()
939 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in zext()
943 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in zext()
1010 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase()
1027 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp88 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase()
102 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray()
155 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
381 numWholeSubWords * APINT_WORD_SIZE); in insertBits()
922 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in sext()
931 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in sext()
946 std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); in zext()
950 (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); in zext()
1011 std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); in ashrSlowCase()
1028 WordShift * APINT_WORD_SIZE); in ashrSlowCase()
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h77 APINT_WORD_SIZE = sizeof(WordType), enumerator
79 APINT_BITS_PER_WORD = APINT_WORD_SIZE * CHAR_BIT
800 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
830 memset(U.pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
1434 memset(U.pVal, -1, getNumWords() * APINT_WORD_SIZE);
1519 memset(U.pVal, 0, getNumWords() * APINT_WORD_SIZE);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h76 APINT_WORD_SIZE = sizeof(WordType), enumerator
78 APINT_BITS_PER_WORD = APINT_WORD_SIZE * CHAR_BIT
797 memset(U.pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
828 memset(U.pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
1428 memset(U.pVal, -1, getNumWords() * APINT_WORD_SIZE); in setAllBits()
1504 memset(U.pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp88 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase()
102 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray()
132 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
141 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
143 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
150 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
161 memset(pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); in operator =()
407 memcpy(pVal, dest, wordsToCopy * APINT_WORD_SIZE); in operator *=()
994 memset(&Result.pVal[i], 0, (Result.getNumWords() - i) * APINT_WORD_SIZE); in zext()
/external/llvm/lib/Support/
DAPInt.cpp88 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase()
102 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray()
132 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
141 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
143 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
150 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase()
161 memset(pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); in operator =()
391 memcpy(pVal, dest, wordsToCopy * APINT_WORD_SIZE); in operator *=()
1016 memset(&Result.pVal[i], 0, (Result.getNumWords() - i) * APINT_WORD_SIZE); in zext()
/external/llvm-project/mlir/lib/IR/
DBuiltinAttributes.cpp545 assert(value.getNumWords() * APInt::APINT_WORD_SIZE >= numBytes); in copyAPIntToArrayForBEmachine()
550 size_t numFilledWords = (value.getNumWords() - 1) * APInt::APINT_WORD_SIZE; in copyAPIntToArrayForBEmachine()
557 SmallVector<char, 8> valueLE(APInt::APINT_WORD_SIZE); in copyAPIntToArrayForBEmachine()
575 assert(result.getNumWords() * APInt::APINT_WORD_SIZE >= numBytes); in copyArrayToAPIntForBEmachine()
582 size_t numFilledWords = (result.getNumWords() - 1) * APInt::APINT_WORD_SIZE; in copyArrayToAPIntForBEmachine()
591 SmallVector<char, 8> inArrayLE(APInt::APINT_WORD_SIZE); in copyArrayToAPIntForBEmachine()
/external/llvm/include/llvm/ADT/
DAPInt.h89 APINT_WORD_SIZE = static_cast<unsigned int>(sizeof(uint64_t)) enumerator
1249 memset(pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h93 APINT_WORD_SIZE = static_cast<unsigned int>(sizeof(uint64_t)) enumerator
1225 memset(pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()