Home
last modified time | relevance | path

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

12

/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/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVValue.h152 SPIRVConstant():SPIRVValue(OpConstant), NumWords(0){} in SPIRVConstant()
158 NumWords = Type->getBitWidth()/32; in recalculateWordCount()
159 if (NumWords < 1) in recalculateWordCount()
160 NumWords = 1; in recalculateWordCount()
161 WordCount = 3 + NumWords; in recalculateWordCount()
165 assert(NumWords >= 1 && NumWords <= 2 && "Invalid constant size"); in validate()
169 for (unsigned i = 0; i < NumWords; ++i) in encode()
174 NumWords = WordCount - 3; in setWordCount()
178 for (unsigned i = 0; i < NumWords; ++i) in decode()
182 unsigned NumWords; variable
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeParser.cpp47 void NaClBitcodeParserListener::BeginBlockInfoBlock(unsigned NumWords) { in BeginBlockInfoBlock() argument
48 Parser->EnterBlock(NumWords); in BeginBlockInfoBlock()
117 unsigned NumWords; in ParseBlockInternal() local
118 if (Record.GetCursor().EnterSubBlock(GetBlockID(), &NumWords)) { in ParseBlockInternal()
122 EnterBlock(NumWords); in ParseBlockInternal()
DNaClBitstreamReader.cpp79 unsigned NumWords = Read(naclbitc::BlockSizeWidth); in EnterSubBlock() local
80 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
387 unsigned NumWords; in ReadBlockInfoBlock() local
388 if (EnterSubBlock(naclbitc::BLOCKINFO_BLOCK_ID, &NumWords)) return true; in ReadBlockInfoBlock()
390 if (Listener) Listener->BeginBlockInfoBlock(NumWords); in ReadBlockInfoBlock()
/external/llvm/test/Other/
Dbcanalyzer-block-info.txt7 DATA: NumWords=4 BlockCodeSize=2>
21 DATA: NumWords=3 BlockCodeSize=3>
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
DBitstreamReader.h375 unsigned NumWords = Read(bitc::BlockSizeWidth); in SkipBlock() local
379 const unsigned char *const SkipTo = NextChar + NumWords*4; in SkipBlock()
408 unsigned NumWords = Read(bitc::BlockSizeWidth); variable
409 if (NumWordsP) *NumWordsP = NumWords;
413 NextChar+NumWords*4 > BitStream->getLastChar())
/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.cpp697 unsigned NumWords = Val.getNumWords(); in setIntValue() local
699 if (NumWords > 1) { in setIntValue()
700 pVal = new (C) uint64_t[NumWords]; in setIntValue()
701 std::copy(Words, Words + NumWords, pVal); in setIntValue()
702 } else if (NumWords == 1) in setIntValue()
/external/swiftshader/third_party/LLVM/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp344 unsigned NumWords = 0; in ParseBlock() local
345 if (Stream.EnterSubBlock(BlockID, &NumWords)) in ParseBlock()
359 errs() << " NumWords=" << NumWords in ParseBlock()
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp47 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local
48 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DBitVector.h400 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument
401 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()
/external/clang/include/clang/AST/
DTemplateBase.h288 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local
289 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
DExpr.h1237 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue() local
1238 if (NumWords > 1) in getIntValue()
1239 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
/external/llvm/include/llvm/ADT/
DBitVector.h541 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument
542 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DBitVector.h541 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument
542 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()
/external/llvm/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp494 unsigned NumWords = 0; in ParseBlock() local
495 if (Stream.EnterSubBlock(BlockID, &NumWords)) in ParseBlock()
513 outs() << " NumWords=" << NumWords in ParseBlock()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitcodeParser.h386 virtual void BeginBlockInfoBlock(unsigned NumWords);
DNaClBitstreamReader.h353 virtual void BeginBlockInfoBlock(unsigned NumWords) = 0;
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h778 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument
779 memset(B, 0 - (int)t, NumWords * sizeof(BitWord)); in init_words()
/external/llvm/lib/Target/ARM/
DARMFrameLowering.cpp448 uint32_t NumWords = NumBytes >> 2; in emitPrologue() local
450 if (NumWords < 65536) in emitPrologue()
452 .addImm(NumWords) in emitPrologue()
456 .addImm(NumWords) in emitPrologue()
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsISelLowering.cpp2218 SelectionDAG &DAG, unsigned NumWords, SDValue FIN, in ReadByValArg() argument
2224 for (unsigned i = 0; i < NumWords; ++i) { in ReadByValArg()
2340 unsigned NumWords = (Flags.getByValSize() + 3) / 4; in LowerFormalArguments() local
2341 LastFI = MFI->CreateFixedObject(NumWords * 4, VA.getLocMemOffset(), in LowerFormalArguments()
2345 ReadByValArg(MF, Chain, dl, OutChains, DAG, NumWords, FIN, VA, Flags); in LowerFormalArguments()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.cpp1252 unsigned NumWords = Record.size(); in ParseConstants() local
1254 Words.resize(NumWords); in ParseConstants()
1255 for (unsigned i = 0; i != NumWords; ++i) in ParseConstants()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp175 unsigned NumWords = getNumWords(); in Profile() local
176 for (unsigned i = 0; i < NumWords; ++i) in Profile()
/external/llvm/lib/Support/
DAPInt.cpp175 unsigned NumWords = getNumWords(); in Profile() local
176 for (unsigned i = 0; i < NumWords; ++i) in Profile()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp172 unsigned NumWords = getNumWords(); in Profile() local
173 for (unsigned i = 0; i < NumWords; ++i) in Profile()

12