Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDTemplateBase.cpp79 unsigned NumWords = Value.getNumWords(); in TemplateArgument() local
80 if (NumWords > 1) { in TemplateArgument()
81 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t)); in TemplateArgument()
82 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t)); in TemplateArgument()
HDExpr.cpp703 unsigned NumWords = Val.getNumWords(); in setIntValue() local
705 if (NumWords > 1) { in setIntValue()
706 pVal = new (C) uint64_t[NumWords]; in setIntValue()
707 std::copy(Words, Words + NumWords, pVal); in setIntValue()
708 } else if (NumWords == 1) in setIntValue()
/NextBSD/contrib/llvm/lib/Bitcode/Reader/
HDBitstreamReader.cpp47 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local
48 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
/NextBSD/contrib/llvm/tools/llvm-bcanalyzer/
HDllvm-bcanalyzer.cpp379 unsigned NumWords = 0; in ParseBlock() local
380 if (Stream.EnterSubBlock(BlockID, &NumWords)) in ParseBlock()
395 outs() << " NumWords=" << NumWords in ParseBlock()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDTemplateBase.h290 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local
291 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
HDExpr.h1251 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue() local
1252 if (NumWords > 1) in getIntValue()
1253 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
/NextBSD/contrib/llvm/include/llvm/ADT/
HDBitVector.h539 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument
540 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()
/NextBSD/contrib/llvm/lib/Target/ARM/
HDARMFrameLowering.cpp446 uint32_t NumWords = NumBytes >> 2; in emitPrologue() local
448 if (NumWords < 65536) in emitPrologue()
450 .addImm(NumWords) in emitPrologue()
454 .addImm(NumWords) in emitPrologue()
/NextBSD/contrib/llvm/lib/Support/
HDAPInt.cpp174 unsigned NumWords = getNumWords(); in Profile() local
175 for (unsigned i = 0; i < NumWords; ++i) in Profile()
/NextBSD/contrib/llvm/include/llvm-c/
HDCore.h1503 unsigned NumWords,
/NextBSD/contrib/llvm/lib/IR/
HDCore.cpp834 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument
839 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReader.cpp7937 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local
7938 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt()
7939 Idx += NumWords; in ReadAPInt()