Searched refs:NumWords (Results 1 – 14 of 14) sorted by relevance
/external/llvm/test/Bitcode/ |
D | pr18704.ll | 9 ;<MODULE_BLOCK NumWords=217 BlockCodeSize=3> 12 ; <TYPE_BLOCK_ID NumWords=23 BlockCodeSize=4> 59 ; <CONSTANTS_BLOCK NumWords=20 BlockCodeSize=4> 84 ; <METADATA_BLOCK NumWords=23 BlockCodeSize=3> 93 ; <VALUE_SYMTAB NumWords=29 BlockCodeSize=4> 107 ; <FUNCTION_BLOCK NumWords=18 BlockCodeSize=4> 109 ; <CONSTANTS_BLOCK NumWords=3 BlockCodeSize=4> 118 ; <VALUE_SYMTAB NumWords=4 BlockCodeSize=4> 123 ; <FUNCTION_BLOCK NumWords=23 BlockCodeSize=4> 125 ; <CONSTANTS_BLOCK NumWords=4 BlockCodeSize=4> [all …]
|
/external/llvm/test/Other/ |
D | bcanalyzer-block-info.txt | 7 DATA: NumWords=4 BlockCodeSize=2> 21 DATA: NumWords=3 BlockCodeSize=3>
|
/external/clang/lib/AST/ |
D | 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()
|
D | 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()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitstreamReader.cpp | 43 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local 44 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
|
/external/llvm/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 353 unsigned NumWords = 0; in ParseBlock() local 354 if (Stream.EnterSubBlock(BlockID, &NumWords)) in ParseBlock() 369 outs() << " NumWords=" << NumWords in ParseBlock()
|
/external/clang/include/clang/AST/ |
D | TemplateBase.h | 290 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local 291 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
|
D | Expr.h | 1249 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue() local 1250 if (NumWords > 1) in getIntValue() 1251 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
/external/llvm/include/llvm/ADT/ |
D | 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()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 437 uint32_t NumWords = NumBytes >> 2; in emitPrologue() local 439 if (NumWords < 65536) in emitPrologue() 441 .addImm(NumWords) in emitPrologue() 445 .addImm(NumWords) in emitPrologue()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 174 unsigned NumWords = getNumWords(); in Profile() local 175 for (unsigned i = 0; i < NumWords; ++i) in Profile()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1496 unsigned NumWords,
|
/external/llvm/lib/IR/ |
D | Core.cpp | 823 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument 828 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 8166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local 8167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt() 8168 Idx += NumWords; in ReadAPInt()
|