Searched refs:NumWords (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp43 unsigned NumWords = Read(bitc::BlockSizeWidth); local
44 if (NumWordsP) *NumWordsP = NumWords;
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp353 unsigned NumWords = 0; local
354 if (Stream.EnterSubBlock(BlockID, &NumWords))
369 outs() << " NumWords=" << NumWords
/external/clang/include/clang/AST/
H A DTemplateBase.h290 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); local
291 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1249 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
1250 if (NumWords > 1)
1251 return llvm::APInt(BitWidth, NumWords, pVal);
/external/llvm/include/llvm/ADT/
H A DBitVector.h539 void init_words(BitWord *B, unsigned NumWords, bool t) {
540 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
/external/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp437 uint32_t NumWords = NumBytes >> 2; local
439 if (NumWords < 65536)
441 .addImm(NumWords)
445 .addImm(NumWords)
/external/clang/lib/AST/
H A DExpr.cpp703 unsigned NumWords = Val.getNumWords(); local
705 if (NumWords > 1) {
706 pVal = new (C) uint64_t[NumWords];
707 std::copy(Words, Words + NumWords, pVal);
708 } else if (NumWords == 1)
/external/llvm/lib/Support/
H A DAPInt.cpp174 unsigned NumWords = getNumWords(); local
175 for (unsigned i = 0; i < NumWords; ++i)
/external/llvm/include/llvm-c/
H A DCore.h1496 unsigned NumWords,
/external/llvm/lib/IR/
H A DCore.cpp823 unsigned NumWords,
828 makeArrayRef(Words, NumWords))));
822 LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[]) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp8166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
8167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
8168 Idx += NumWords;

Completed in 431 milliseconds