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

/freebsd-9.3-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp75 unsigned NumWords = Read(bitc::BlockSizeWidth); local
76 if (NumWordsP) *NumWordsP = NumWords;
/freebsd-9.3-release/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp345 unsigned NumWords = 0; local
346 if (Stream.EnterSubBlock(BlockID, &NumWords))
360 outs() << " NumWords=" << NumWords
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DTemplateBase.h289 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); local
290 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1218 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
1219 if (NumWords > 1)
1220 return llvm::APInt(BitWidth, NumWords, pVal);
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DBitVector.h554 void init_words(BitWord *B, unsigned NumWords, bool t) {
555 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp680 unsigned NumWords = Val.getNumWords(); local
682 if (NumWords > 1) {
683 pVal = new (C) uint64_t[NumWords];
684 std::copy(Words, Words + NumWords, pVal);
685 } else if (NumWords == 1)
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAPInt.cpp173 unsigned NumWords = getNumWords(); local
174 for (unsigned i = 0; i < NumWords; ++i)
/freebsd-9.3-release/contrib/llvm/include/llvm-c/
H A DCore.h1435 unsigned NumWords,
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DCore.cpp667 unsigned NumWords,
672 makeArrayRef(Words, NumWords))));
666 LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[]) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp7216 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
7217 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
7218 Idx += NumWords;

Completed in 245 milliseconds