HomeSort by relevance Sort by last modified time
    Searched defs:startBlock (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /frameworks/rs/script_api/
Utilities.h 77 void startBlock() {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
print.go 26 startBlock(b *Block, reachable bool)
44 func (p stringFuncPrinter) startBlock(b *Block, reachable bool) {
89 p.startBlock(b, reachable[b.ID])
html.go 459 func (p htmlFuncPrinter) startBlock(b *Block, reachable bool) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
print.go 26 startBlock(b *Block, reachable bool)
44 func (p stringFuncPrinter) startBlock(b *Block, reachable bool) {
89 p.startBlock(b, reachable[b.ID])
html.go 459 func (p htmlFuncPrinter) startBlock(b *Block, reachable bool) {
  /external/eigen/Eigen/src/Core/products/
TriangularSolverVector.h 111 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),
TriangularMatrixMatrix.h 180 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);
TriangularSolverMatrix.h 149 Index startBlock = IsLower ? k2+k1 : k2-k1-actualPanelWidth;
153 pack_rhs(blockB+actual_kc*j2, other.getSubMapper(startBlock,j2), actualPanelWidth, actual_cols, actual_kc, blockBOffset);
160 pack_lhs(blockA, tri.getSubMapper(startTarget,startBlock), actualPanelWidth, lengthTarget);
  /frameworks/compile/slang/
slang_rs_reflect_utils.h 126 void startBlock() {
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 105 startBlock();
124 startBlock();
195 startBlock();
203 startBlock();
209 startBlock();
219 startBlock();
236 startBlock();
248 startBlock();
289 private void startBlock() {
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 155 /// startBlock - Initialize register live-range state for scheduling in
158 void startBlock(MachineBasicBlock *BB) override;
331 Scheduler.startBlock(&MBB);
376 /// StartBlock - Initialize register live-range state for scheduling in
379 void SchedulePostRATDList::startBlock(MachineBasicBlock *BB) {
381 ScheduleDAGInstrs::startBlock(BB);
386 AntiDepBreak->StartBlock(BB);
ScheduleDAGInstrs.cpp 212 void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
229 assert(bb == BB && "startBlock should set BB");
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java 190 MutableTryBlock<EH> startBlock = null;
201 startBlock = tryBlock;
209 startBlock = tryBlock.split(startAddress);
217 startBlock = new MutableTryBlock<EH>(startAddress, endAddress);
218 tryBlock.prepend(startBlock);
219 return new TryBounds<EH>(startBlock, startBlock);
226 startBlock = new MutableTryBlock<EH>(startAddress, currentStartAddress);
227 tryBlock.prepend(startBlock);
240 if (startBlock == null)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 202 public void startBlock(TypeList catches) {
262 * call to startBlock() can throw.
270 * startBlock()
278 * the last call to {@code startBlock()}
286 * instruction if encountered since last call to startBlock().
    [all...]
Ropper.java 228 private int startBlock;
233 * @param startBlock First block of the subroutine.
235 Subroutine(int startBlock) {
236 this.startBlock = startBlock;
245 * @param startBlock First block of the subroutine.
249 Subroutine(int startBlock, int retBlock) {
250 this(startBlock);
258 return startBlock;
324 Frame subFrame = frame.subFrameForLabel(startBlock, label)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 19 def startBlock(self, block):
51 self.startBlock(block)
59 self.startBlock(self.exit)
  /external/python/cpython2/Lib/compiler/
pyassem.py 19 def startBlock(self, block):
51 self.startBlock(block)
59 self.startBlock(self.exit)
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 19 def startBlock(self, block):
51 self.startBlock(block)
59 self.startBlock(self.exit)
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 19 def startBlock(self, block):
51 self.startBlock(block)
59 self.startBlock(self.exit)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 19 def startBlock(self, block):
51 self.startBlock(block)
59 self.startBlock(self.exit)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 19 def startBlock(self, block):
51 self.startBlock(block)
59 self.startBlock(self.exit)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
ssa.go 166 s.startBlock(s.f.Entry)
366 // startBlock sets the current block we're generating code in to b.
367 func (s *state) startBlock(b *ssa.Block) {
698 s.startBlock(lab.target)
839 s.startBlock(bThen)
846 s.startBlock(bElse)
852 s.startBlock(bEnd)
905 s.startBlock(bCond)
931 s.startBlock(bBody)
948 s.startBlock(bIncr
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
ssa.go 166 s.startBlock(s.f.Entry)
366 // startBlock sets the current block we're generating code in to b.
367 func (s *state) startBlock(b *ssa.Block) {
698 s.startBlock(lab.target)
839 s.startBlock(bThen)
846 s.startBlock(bElse)
852 s.startBlock(bEnd)
905 s.startBlock(bCond)
931 s.startBlock(bBody)
948 s.startBlock(bIncr
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /external/dexmaker/lib/
dalvik-dx-1.jar 

Completed in 600 milliseconds

1 2 3 4