Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
DTryListBuilder.java190 MutableTryBlock<EH> startBlock = null; in getBoundingRanges() local
201 startBlock = tryBlock; in getBoundingRanges()
209 startBlock = tryBlock.split(startAddress); in getBoundingRanges()
217 startBlock = new MutableTryBlock<EH>(startAddress, endAddress); in getBoundingRanges()
218 tryBlock.prepend(startBlock); in getBoundingRanges()
219 return new TryBounds<EH>(startBlock, startBlock); in getBoundingRanges()
226 startBlock = new MutableTryBlock<EH>(startAddress, currentStartAddress); in getBoundingRanges()
227 tryBlock.prepend(startBlock); in getBoundingRanges()
240 if (startBlock == null) { in getBoundingRanges()
241 startBlock = new MutableTryBlock<EH>(startAddress, endAddress); in getBoundingRanges()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DJavaSourceWriter.java105 startBlock(); in startClass()
124 startBlock(); in startAnonymousClass()
195 startBlock(); in startMethod()
203 startBlock(); in startIfBlock()
209 startBlock(); in endIfStartElseBlock()
219 startBlock(); in startScopedBlock()
236 startBlock(); in startIterableForLoop()
248 startBlock(); in startForLoop()
289 private void startBlock() { in startBlock() method in JavaSourceWriter
/external/eigen/Eigen/src/Core/products/
DTriangularSolverVector.h111 Index startBlock = IsLower ? pi : pi-actualPanelWidth;
125 Index r = IsLower ? size - endBlock : startBlock; // remaining size
133 LhsMapper(&lhs.coeffRef(endBlock,startBlock), lhsStride),
134 RhsMapper(rhs+startBlock, 1),
DTriangularMatrixMatrix.h180 Index startBlock = actual_k2+k1;
189 triangularBuffer.coeffRef(k,k) = lhs(startBlock+k,startBlock+k);
191 triangularBuffer.coeffRef(i,k) = lhs(startBlock+i,startBlock+k);
195 gebp_kernel(res.getSubMapper(startBlock, 0), blockA, blockB,
204 … pack_lhs(blockA, lhs.getSubMapper(startTarget,startBlock), actualPanelWidth, lengthTarget);
DTriangularSolverMatrix.h149 Index startBlock = IsLower ? k2+k1 : k2-k1-actualPanelWidth;
153 …pack_rhs(blockB+actual_kc*j2, other.getSubMapper(startBlock,j2), actualPanelWidth, actual_cols, ac…
160 … pack_lhs(blockA, tri.getSubMapper(startTarget,startBlock), actualPanelWidth, lengthTarget);
/external/llvm/lib/CodeGen/
DPostRASchedulerList.cpp158 void startBlock(MachineBasicBlock *BB) override;
331 Scheduler.startBlock(&MBB); in runOnMachineFunction()
379 void SchedulePostRATDList::startBlock(MachineBasicBlock *BB) { in startBlock() function in SchedulePostRATDList
381 ScheduleDAGInstrs::startBlock(BB); in startBlock()
DDFAPacketizer.cpp236 VLIWScheduler->startBlock(MBB); in PacketizeMIs()
DScheduleDAGInstrs.cpp212 void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) { in startBlock() function in ScheduleDAGInstrs
DMachineScheduler.cpp424 Scheduler.startBlock(&*MBB); in scheduleRegions()
DMachinePipeliner.cpp799 SMS.startBlock(MBB); in swingModuloScheduler()
/external/python/cpython2/Lib/compiler/
Dpycodegen.py242 self.startBlock = self.graph.startBlock
428 self.startBlock(nextTest)
453 self.startBlock(else_) # or just the POPs if not else clause
562 self.startBlock(cleanup)
590 self.startBlock(anchor)
614 self.startBlock(anchor)
639 self.startBlock(anchor)
706 self.startBlock(anchor)
793 self.startBlock(handlers)
Dpyassem.py19 def startBlock(self, block): member in FlowGraph
51 self.startBlock(block)
59 self.startBlock(self.exit)
/external/google-breakpad/src/client/ios/
DBreakpadController.mm133 void(^startBlock)() = ^{
141 startBlock();
143 dispatch_async(queue_, startBlock);
/external/llvm/include/llvm/CodeGen/
DScheduleDAGInstrs.h265 virtual void startBlock(MachineBasicBlock *BB);