HomeSort by relevance Sort by last modified time
    Searched defs:loop (Results 226 - 250 of 661) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 455 * the loop variables. */
464 struct r500_loop_info * loop; local
469 loop = &s->Loops[s->CurrentLoopDepth++];
470 memset(loop, 0, sizeof(struct r500_loop_info));
471 loop->BranchDepth = s->CurrentBranchDepth;
472 loop->BgnLoop = newip;
480 loop = &s->Loops[s->CurrentLoopDepth - 1];
481 memory_pool_array_reserve(&s->C->Pool, int, loop->Brks,
482 loop->BrkCount, loop->BrkReserved, 1)
    [all...]
radeon_dataflow_deadcode.c 93 struct loopinfo * loop = &s->LoopStack[s->LoopStackSize - 1]; local
95 loop->Breaks, loop->BreakCount, loop->BreaksReserved, 1);
97 memcpy(&loop->Breaks[loop->BreakCount++], &s->R, sizeof(s->R));
236 /* Mark all sources in the loop body as used before doing
275 struct loopinfo * loop = &s.LoopStack[s.LoopStackSize-1]; local
276 for(i = 0; i < loop->BreakCount; i++) {
277 or_updatemasks(&s.R, &s.R, &loop->Breaks[i])
    [all...]
radeon_emulate_loops.c 59 struct loop_info * loop)
62 unsigned int loop_i = (loop->EndLoop->IP - loop->BeginLoop->IP) - 1;
63 /* +1 because the program already has one iteration of the loop. */
67 static void unroll_loop(struct radeon_compiler * c, struct loop_info * loop,
72 struct rc_instruction * first = loop->BeginLoop->Next;
73 struct rc_instruction * last = loop->EndLoop->Prev;
75 rc_remove_instruction(loop->BeginLoop);
76 rc_remove_instruction(loop->EndLoop);
186 static int try_unroll_loop(struct radeon_compiler * c, struct loop_info * loop)
424 struct loop_info * loop; local
492 struct loop_info loop; local
    [all...]
  /external/mesa3d/src/glsl/tests/lower_jumps/
create_test_cases.py 124 def loop(statements): function
125 """Create a loop containing the given statements as its loop
129 return [['loop', [], [], [], [], statements]]
439 loop(simple_if('b', simple_if('c', break_(), continue_()),
445 # loop gets guarded so that it only executes if the return
452 loop(simple_if('b', simple_if('c', [], continue_()),
461 doc_string = """If a loop contains an unconditional break at the bottom of
464 loop(assign_x('a', const_float(1)) +
471 doc_string = """If a loop contains a conditional break at the bottom of it
    [all...]
  /external/owasp/sanitizer/tools/findbugs/bin/
findbugs.bat 37 goto loop
48 :loop label
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 47 bool loop = false; local
56 if ((computeWinding = unorderable || (angle == firstAngle && loop))) {
57 break; // if we get here, there's no winding, loop is unorderable
59 loop |= angle == firstAngle;
63 // if the angle loop contains an unorderable span, the angle order may be useless
  /external/skia/src/views/unix/
SkOSWindow_Unix.cpp 174 // Check for pending events before entering the select loop. There might
264 void SkOSWindow::loop() { function in class:SkOSWindow
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
InterpreterInstaller.java 226 Looper.loop();
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 21 // [ while(*h) { Start loop
22 // ] } End loop
190 int loop; local
293 // Make part of PHI instruction now, wait until end of loop to finish
314 // Reading stdin loop
315 loop = (cursym == SYM_NONE)
318 while(loop) {
326 loop = 0;
337 // loop = 1
342 // loop =
    [all...]
  /external/toybox/toys/other/
vmstat.c 80 unsigned loop, rows = (toys.optflags & FLAG_n) ? 0 : 25, local
89 for (loop = 0; !loop_max || loop <= loop_max; loop++) {
90 unsigned idx = loop&1, offset = 0, expected = 0;
94 if (loop && loop_delay) sleep(loop_delay);
97 if (rows>3 && !(loop % (rows-3))) {
118 // Collect unit adjustments (outside the inner loop to save time)
120 if (!loop) {
  /external/v8/src/arm/
codegen-arm.cc 43 Label loop, less_256, less_128, less_64, less_32, _16_or_less, _8_or_less;
74 __ bind(&loop);
84 __ b(ge, &loop);
146 Label loop;
152 __ bind(&loop);
156 __ b(&loop, ne);
199 Label loop;
205 __ bind(&loop);
210 __ b(&loop, ne);
225 Label loop;
360 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
503 Label entry, loop, convert_hole, gc_required, only_change_map; local
    [all...]
  /external/v8/src/arm64/
codegen-arm64.cc 133 // Prepare for conversion loop.
162 Label loop; local
163 __ Bind(&loop);
172 __ B(lt, &loop);
228 // Prepare for conversion loop.
239 // Allocating heap numbers in the loop below can fail and cause a jump to
265 Label loop, convert_hole; local
266 __ Bind(&loop);
290 __ B(lt, &loop);
  /external/v8/src/compiler/
osr.cc 18 #include "src/compiler/loop-analysis.h"
56 LoopTree::Loop* osr_loop, Node* osr_normal_entry,
63 // Make a copy of the graph for each outer loop.
65 for (LoopTree::Loop* loop = osr_loop->parent(); loop; loop = loop->parent()) {
71 loop->depth(), loop_tree->HeaderNode(loop)->id()
334 LoopTree::Loop* loop = loop_tree->ContainingLoop(osr_loop); local
    [all...]
verifier.cc 297 // Terminates take one loop and effect.
439 Node* loop = NodeProperties::GetControlInput(node, 1); local
440 CHECK_EQ(IrOpcode::kLoop, loop->opcode());
    [all...]
  /external/v8/src/mips/
codegen-mips.cc 100 // copied. We will loop, incrementing a0 and a1 until a0 equals a3.
105 __ addu(a3, a0, a3); // Now a3 is the final dst after loop.
107 // When in the loop we prefetch with kPrefHintPrepareForStore hint,
207 // Here we have less than 32 bytes to copy. Set up for a loop to copy
210 // all the word chunks have been copied. We will loop, incrementing a0
267 // loop, incrementing a0 and a1 until a0 equals a3.
507 // Less than 32 bytes to copy. Set up for a loop to
648 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
714 // Prepare for conversion loop.
754 __ bind(&loop);
799 Label entry, loop, convert_hole, gc_required, only_change_map; local
    [all...]
  /external/v8/src/mips64/
codegen-mips64.cc 101 // copied. We will loop, incrementing a0 and a1 until a0 equals a3.
106 __ addu(a3, a0, a3); // Now a3 is the final dst after loop.
108 // When in the loop we prefetch with kPrefHintPrepareForStore hint,
208 // Here we have less than 32 bytes to copy. Set up for a loop to copy
211 // all the word chunks have been copied. We will loop, incrementing a0
268 // loop, incrementing a0 and a1 until a0 equals a3.
509 // Less than 32 bytes to copy. Set up for a loop to
649 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
715 // Prepare for conversion loop.
755 __ bind(&loop);
800 Label entry, loop, convert_hole, gc_required, only_change_map; local
    [all...]
  /external/v8/src/ppc/
codegen-ppc.cc 101 Label loop, entry, convert_hole, only_change_map, done; local
155 // Prepare for conversion loop.
187 __ bind(&loop);
216 __ blt(&loop);
226 Label loop, convert_hole, gc_required, only_change_map; local
270 // Prepare for conversion loop.
284 // Allocating heap numbers in the loop below can fail and cause a jump to
307 __ b(&loop);
321 __ bind(&loop);
355 __ blt(&loop);
    [all...]
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 230 Label loop; local
231 __ bind(&loop);
260 // Compare to end of match, and loop if not done.
262 __ j(below, &loop);
391 Label loop; local
392 __ bind(&loop);
407 __ j(below, &loop);
760 } else { // Unroll the loop.
    [all...]
  /external/v8/src/regexp/mips/
regexp-macro-assembler-mips.cc 257 Label loop;
258 __ bind(&loop);
280 __ Branch(&loop, lt, a0, Operand(a1));
402 Label loop; local
403 __ bind(&loop);
417 __ Branch(&loop, lt, a0, Operand(a1));
753 // unroll the loop once to add an operation between a load of a register
    [all...]
  /external/v8/src/regexp/mips64/
regexp-macro-assembler-mips64.cc 293 Label loop;
294 __ bind(&loop);
316 __ Branch(&loop, lt, a0, Operand(a1));
432 Label loop; local
433 __ bind(&loop);
447 __ Branch(&loop, lt, a0, Operand(a1));
789 // unroll the loop once to add an operation between a load of a register
    [all...]
  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 229 Label loop; local
230 __ bind(&loop);
259 // Compare to end of match, and loop if not done.
261 __ j(below, &loop);
390 Label loop; local
391 __ bind(&loop);
406 __ j(below, &loop);
759 } else { // Unroll the loop.
    [all...]
  /external/v8/src/s390/
codegen-s390.cc 93 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
145 // Prepare for conversion loop.
179 __ bind(&loop);
210 __ blt(&loop);
220 Label loop, convert_hole, gc_required, only_change_map; local
264 // Prepare for conversion loop.
278 // Allocating heap numbers in the loop below can fail and cause a jump to
301 __ b(&loop, Label::kNear);
315 __ bind(&loop);
351 __ blt(&loop);
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 167 Label loop, entry, convert_hole; local
206 // Conversion loop.
207 __ bind(&loop);
228 __ j(not_sign, &loop);
248 Label loop, entry, convert_hole, gc_required, only_change_map; local
275 // Prepare for conversion loop.
281 // Allocating heap numbers in the loop below can fail and cause a jump to
303 __ bind(&loop);
341 __ j(not_sign, &loop);
  /external/vixl/test/aarch32/
test-simulator-cond-rd-memop-immediate-512-a32.cc 152 // It used to generate a loop over an instruction.
253 // A loop will be generated for each element of this array.
3380 Label loop; local
    [all...]
test-simulator-cond-rd-memop-immediate-8192-a32.cc 152 // It used to generate a loop over an instruction.
253 // A loop will be generated for each element of this array.
3380 Label loop; local
    [all...]

Completed in 1547 milliseconds

1 2 3 4 5 6 7 8 91011>>