Searched refs:NumWords (Results 1 – 12 of 12) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | TemplateBase.cpp | 79 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()
|
| HD | Expr.cpp | 703 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/ |
| HD | BitstreamReader.cpp | 47 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local 48 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
|
| /NextBSD/contrib/llvm/tools/llvm-bcanalyzer/ |
| HD | llvm-bcanalyzer.cpp | 379 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/ |
| HD | TemplateBase.h | 290 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local 291 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
|
| HD | Expr.h | 1251 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/ |
| HD | BitVector.h | 539 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/ |
| HD | ARMFrameLowering.cpp | 446 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/ |
| HD | APInt.cpp | 174 unsigned NumWords = getNumWords(); in Profile() local 175 for (unsigned i = 0; i < NumWords; ++i) in Profile()
|
| /NextBSD/contrib/llvm/include/llvm-c/ |
| HD | Core.h | 1503 unsigned NumWords,
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | Core.cpp | 834 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument 839 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 7937 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local 7938 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt() 7939 Idx += NumWords; in ReadAPInt()
|