/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/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVValue.h | 152 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/ |
D | NaClBitcodeParser.cpp | 47 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()
|
D | NaClBitstreamReader.cpp | 79 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/ |
D | bcanalyzer-block-info.txt | 7 DATA: NumWords=4 BlockCodeSize=2> 21 DATA: NumWords=3 BlockCodeSize=3>
|
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | BitstreamReader.h | 375 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/ |
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 | 697 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/ |
D | llvm-bcanalyzer.cpp | 344 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/ |
D | BitstreamReader.cpp | 47 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local 48 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | BitVector.h | 400 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/ |
D | TemplateBase.h | 288 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local 289 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
|
D | Expr.h | 1237 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/ |
D | BitVector.h | 541 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/ |
D | BitVector.h | 541 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/ |
D | llvm-bcanalyzer.cpp | 494 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/ |
D | NaClBitcodeParser.h | 386 virtual void BeginBlockInfoBlock(unsigned NumWords);
|
D | NaClBitstreamReader.h | 353 virtual void BeginBlockInfoBlock(unsigned NumWords) = 0;
|
/external/swiftshader/third_party/subzero/src/ |
D | IceBitVector.h | 778 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/ |
D | ARMFrameLowering.cpp | 448 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/ |
D | MipsISelLowering.cpp | 2218 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/ |
D | BitcodeReader.cpp | 1252 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/ |
D | APInt.cpp | 175 unsigned NumWords = getNumWords(); in Profile() local 176 for (unsigned i = 0; i < NumWords; ++i) in Profile()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 175 unsigned NumWords = getNumWords(); in Profile() local 176 for (unsigned i = 0; i < NumWords; ++i) in Profile()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APInt.cpp | 172 unsigned NumWords = getNumWords(); in Profile() local 173 for (unsigned i = 0; i < NumWords; ++i) in Profile()
|