/external/python/cpython2/Lib/compiler/ |
D | pycodegen.py | 243 self.nextBlock = self.graph.nextBlock 425 self.nextBlock() 431 self.nextBlock(end) 442 self.nextBlock(loop) 449 self.nextBlock() 458 self.nextBlock(after) 471 self.nextBlock(start) 477 self.nextBlock(anchor) 482 self.nextBlock(after) 499 self.nextBlock() [all …]
|
D | pyassem.py | 29 def nextBlock(self, block=None): member in FlowGraph
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz4/ |
D | BlockLZ4CompressorInputStream.java | 94 int nextBlock = readOneByte(); in readSizes() local 95 if (nextBlock == -1) { in readSizes() 98 nextBackReferenceSize = nextBlock & BACK_REFERENCE_SIZE_MASK; in readSizes() 99 long literalSizePart = (nextBlock & LITERAL_SIZE_MASK) >> SIZE_BITS; in readSizes()
|
D | FramedLZ4CompressorInputStream.java | 147 nextBlock(); in read() 174 nextBlock(); in init() 249 private void nextBlock() throws IOException { in nextBlock() method in FramedLZ4CompressorInputStream
|
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/ |
D | PDLToPDLInterp.cpp | 64 void generateRecordMatch(Block *currentBlock, Block *nextBlock, 177 Block *nextBlock; in generateMatcher() local 179 nextBlock = generateMatcher(*failureNode); in generateMatcher() 180 failureBlockStack.push_back(nextBlock); in generateMatcher() 183 nextBlock = failureBlockStack.back(); in generateMatcher() 196 child, nextBlock); in generateMatcher() 204 generateSwitch(block, node.getQuestion(), val, nextBlock, in generateMatcher() 209 generateRecordMatch(block, nextBlock, successNode->getPattern()); in generateMatcher() 374 void PatternLowering::generateRecordMatch(Block *currentBlock, Block *nextBlock, in generateRecordMatch() argument 404 nextBlock); in generateRecordMatch()
|
/external/clang/lib/CodeGen/ |
D | CGException.cpp | 957 llvm::BasicBlock *nextBlock; in emitCatchDispatchBlock() local 962 nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope()); in emitCatchDispatchBlock() 968 nextBlock = catchScope.getHandler(i+1).Block; in emitCatchDispatchBlock() 973 nextBlock = CGF.createBasicBlock("catch.fallthrough"); in emitCatchDispatchBlock() 984 CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock); in emitCatchDispatchBlock() 992 CGF.EmitBlock(nextBlock); in emitCatchDispatchBlock()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGException.cpp | 1103 llvm::BasicBlock *nextBlock; in emitCatchDispatchBlock() local 1108 nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope()); in emitCatchDispatchBlock() 1114 nextBlock = catchScope.getHandler(i+1).Block; in emitCatchDispatchBlock() 1119 nextBlock = CGF.createBasicBlock("catch.fallthrough"); in emitCatchDispatchBlock() 1130 CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock); in emitCatchDispatchBlock() 1138 CGF.EmitBlock(nextBlock); in emitCatchDispatchBlock()
|
/external/lz4/programs/ |
D | lz4io.c | 1331 … const unsigned long nextBlock = nextCBlockSize + (blockChecksumFlag * LZ4F_BLOCK_CHECKSUM_SIZE); in LZ4IO_skipBlocksData() local 1343 totalBlocksSize += nextBlock; in LZ4IO_skipBlocksData() 1345 if (UTIL_fseek(finput, nextBlock, SEEK_CUR) != 0) { in LZ4IO_skipBlocksData()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | ProgramExecutableVk.cpp | 445 const gl::InterfaceBlock &nextBlock = blocks[bufferIndex + arraySize]; in GetInterfaceBlockArraySize() local 447 if (nextBlock.arrayElement != arraySize) in GetInterfaceBlockArraySize() 454 ASSERT(nextBlock.name == block.name); in GetInterfaceBlockArraySize() 455 ASSERT(nextBlock.isArray); in GetInterfaceBlockArraySize()
|
/external/angle/src/compiler/translator/ |
D | OutputSPIRV.cpp | 5530 size_t nextBlock = 0; in GetLoopBlocks() local 5531 *headerBlock = conditional->blockIds[nextBlock++]; in GetLoopBlocks() 5535 *condBlock = conditional->blockIds[nextBlock++]; in GetLoopBlocks() 5537 *bodyBlock = conditional->blockIds[nextBlock++]; in GetLoopBlocks() 5541 *continueBlock = conditional->blockIds[nextBlock++]; in GetLoopBlocks() 5545 *condBlock = conditional->blockIds[nextBlock++]; in GetLoopBlocks() 5547 *mergeBlock = conditional->blockIds[nextBlock++]; in GetLoopBlocks() 5549 ASSERT(nextBlock == conditional->blockIds.size()); in GetLoopBlocks()
|
D | BuildSPIRV.cpp | 1736 const spirv::IdRef nextBlock = conditional->blockIds[conditional->nextBlockToWrite]; in writeSwitchCaseBlockEnd() local 1738 spirv::WriteBranch(getSpirvCurrentFunctionBlock(), nextBlock); in writeSwitchCaseBlockEnd()
|
/external/skqp/tools/bookmaker/ |
D | includeWriter.cpp | 1653 Definition* nextBlock = nullptr; in populate() local 1661 nextBlock = test; in populate() 1668 SkASSERT(nextBlock); // FIXME: check enum for correct order earlier in populate() 1670 const char* commentEnd = nextBlock->fStart; in populate()
|