Home
last modified time | relevance | path

Searched refs:getNumWords (Results 1 – 12 of 12) sorted by relevance

/external/llvm/lib/Support/
DAPInt.cpp78 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 …]
DAPFloat.cpp629 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/
DAPInt.h150 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/
DTemplateBase.h287 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral()
DExpr.h1271 bool hasAllocation() const { return llvm::APInt::getNumWords(BitWidth) > 1; } in hasAllocation()
1280 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue()
/external/clang/lib/AST/
DTemplateBase.cpp79 unsigned NumWords = Value.getNumWords(); in TemplateArgument()
DExpr.cpp708 unsigned NumWords = Val.getNumWords(); in setIntValue()
/external/llvm/unittests/ADT/
DAPIntTest.cpp1017 EXPECT_EQ(2u, Y.getNumWords()); in TEST()
/external/llvm/lib/Target/X86/
DX86MCInstLower.cpp1385 for (int i = 0, N = Val.getNumWords(); i < N; ++i) { in EmitInstruction()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2017 int Chunk = API.getNumWords() - 1; in emitGlobalConstantFP()
/external/clang/lib/Serialization/
DASTWriter.cpp4733 Record.append(Words, Words + Value.getNumWords()); in AddAPInt()
DASTReader.cpp8098 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt()