Home
last modified time | relevance | path

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

/external/llvm/test/Bitcode/
Dpr18704.ll9 ;<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/
Dbcanalyzer-block-info.txt7 DATA: NumWords=4 BlockCodeSize=2>
21 DATA: NumWords=3 BlockCodeSize=3>
/external/clang/lib/AST/
DTemplateBase.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()
DExpr.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()
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp43 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local
44 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
/external/llvm/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp353 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/
DTemplateBase.h290 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local
291 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
DExpr.h1249 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/
DBitVector.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()
/external/llvm/lib/Target/ARM/
DARMFrameLowering.cpp437 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/
DAPInt.cpp174 unsigned NumWords = getNumWords(); in Profile() local
175 for (unsigned i = 0; i < NumWords; ++i) in Profile()
/external/llvm/include/llvm-c/
DCore.h1496 unsigned NumWords,
/external/llvm/lib/IR/
DCore.cpp823 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument
828 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
/external/clang/lib/Serialization/
DASTReader.cpp8166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local
8167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt()
8168 Idx += NumWords; in ReadAPInt()