Searched refs:getNumWords (Results 1 – 12 of 12) sorted by relevance
/external/llvm/lib/Support/ |
D | APInt.cpp | 78 pVal = getClearedMemory(getNumWords()); in initSlowCase() 81 for (unsigned i = 1; i < getNumWords(); ++i) in initSlowCase() 86 pVal = getMemory(getNumWords()); in initSlowCase() 87 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 97 pVal = getClearedMemory(getNumWords()); in initFromArray() 99 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords()); in initFromArray() 131 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 139 pVal = getMemory(RHS.getNumWords()); in AssignSlowCase() 140 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 141 } else if (getNumWords() == RHS.getNumWords()) in AssignSlowCase() [all …]
|
D | APFloat.cpp | 629 if (!fill || fill->getNumWords() < numParts) in makeNaN() 633 std::min(fill->getNumWords(), numParts)); in makeNaN() 2247 SmallVector<uint64_t, 4> parts(result.getNumWords()); in convertToInteger() 2294 unsigned int partCount = Val.getNumWords(); in convertFromAPInt()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 150 pVal[getNumWords() - 1] &= mask; in clearUnusedBits() 639 for (unsigned i = 0; i != getNumWords(); ++i) 1227 for (unsigned i = 0; i < getNumWords(); ++i) in setAllBits() 1244 memset(pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits() 1257 for (unsigned i = 0; i < getNumWords(); ++i) in flipAllBits() 1281 unsigned getNumWords() const { return getNumWords(BitWidth); } in getNumWords() function 1289 static unsigned getNumWords(unsigned BitWidth) { in getNumWords() function
|
/external/clang/include/clang/AST/ |
D | TemplateBase.h | 287 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral()
|
D | Expr.h | 1271 bool hasAllocation() const { return llvm::APInt::getNumWords(BitWidth) > 1; } in hasAllocation() 1280 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue()
|
/external/clang/lib/AST/ |
D | TemplateBase.cpp | 79 unsigned NumWords = Value.getNumWords(); in TemplateArgument()
|
D | Expr.cpp | 708 unsigned NumWords = Val.getNumWords(); in setIntValue()
|
/external/llvm/unittests/ADT/ |
D | APIntTest.cpp | 1017 EXPECT_EQ(2u, Y.getNumWords()); in TEST()
|
/external/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 1385 for (int i = 0, N = Val.getNumWords(); i < N; ++i) { in EmitInstruction()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2017 int Chunk = API.getNumWords() - 1; in emitGlobalConstantFP()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 4733 Record.append(Words, Words + Value.getNumWords()); in AddAPInt()
|
D | ASTReader.cpp | 8098 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt()
|