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.cpp665 unsigned NumWords = Val.getNumWords(); local
667 if (NumWords > 1) {
668 pVal = new (C) uint64_t[NumWords];
669 std::copy(Words, Words + NumWords, pVal);
670 } 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.cpp174 unsigned NumWords = getNumWords(); local
175 for (unsigned i = 0; i < NumWords; ++i)
/external/clang/include/clang/AST/
H A DTemplateBase.h291 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); local
292 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1237 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
1238 if (NumWords > 1)
1239 return llvm::APInt(BitWidth, NumWords, pVal);
/external/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp302 uint32_t NumWords = NumBytes >> 2; local
304 if (NumWords < 65536)
306 .addImm(NumWords)
310 .addImm(NumWords)
/external/llvm/lib/IR/
H A DCore.cpp729 unsigned NumWords,
734 makeArrayRef(Words, NumWords))));
728 LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[]) argument

Completed in 1230 milliseconds