Searched refs:APINT_WORD_SIZE (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/Support/ |
D | APInt.cpp | 86 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 100 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 130 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 139 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 141 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 148 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 159 memset(pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); in operator =() 389 memcpy(pVal, dest, wordsToCopy * APINT_WORD_SIZE); in operator *=() 997 memset(&Result.pVal[i], 0, (Result.getNumWords() - i) * APINT_WORD_SIZE); in zext()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 90 APINT_WORD_SIZE = static_cast<unsigned int>(sizeof(uint64_t)) enumerator 1105 memset(pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()
|