Searched defs:NumWords (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp75 unsigned NumWords = Read(bitc::BlockSizeWidth); local
76 if (NumWordsP) *NumWordsP = NumWords;
/external/clang/lib/AST/
H A DTemplateBase.cpp64 unsigned NumWords = Value.getNumWords(); local
65 if (NumWords > 1) {
66 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t));
67 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t));
H A DExpr.cpp630 unsigned NumWords = Val.getNumWords(); local
632 if (NumWords > 1) {
633 pVal = new (C) uint64_t[NumWords];
634 std::copy(Words, Words + NumWords, pVal);
635 } else if (NumWords == 1)
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp344 unsigned NumWords = 0; local
345 if (Stream.EnterSubBlock(BlockID, &NumWords))
359 outs() << " NumWords=" << NumWords
/external/llvm/lib/Support/
H A DAPInt.cpp173 unsigned NumWords = getNumWords(); local
174 for (unsigned i = 0; i < NumWords; ++i)
/external/clang/include/clang/AST/
H A DTemplateBase.h278 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); local
279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1217 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
1218 if (NumWords > 1)
1219 return llvm::APInt(BitWidth, NumWords, pVal);
/external/llvm/lib/IR/
H A DCore.cpp633 unsigned NumWords,
638 makeArrayRef(Words, NumWords))));
632 LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[]) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp7166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
7167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
7168 Idx += NumWords;

Completed in 359 milliseconds