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

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/nv30/
nvfx_vertprog.c 467 struct nvfx_loop_entry loop; local
753 loop.cont_target = idx;
754 loop.brk_target = finst->Label.Label + 1;
755 util_dynarray_append(&vpc->loop_stack, struct nvfx_loop_entry, loop);
758 loop = util_dynarray_pop(&vpc->loop_stack, struct nvfx_loop_entry);
761 reloc.target = loop.cont_target;
767 loop = util_dynarray_top(&vpc->loop_stack, struct nvfx_loop_entry);
770 reloc.target = loop.cont_target;
776 loop = util_dynarray_top(&vpc->loop_stack, struct nvfx_loop_entry);
779 reloc.target = loop.brk_target
    [all...]
  /external/mesa3d/src/glsl/
lower_jumps.cpp 32 * 3. Replace all "break" with a single conditional one at the end of the loop
42 * Continues are lowered by adding a per-loop "execute flag", initialized to
43 * true, that when cleared inhibits all execution until the end of the loop.
46 * at the end of the loop, and trigger the unique "break".
54 * a dummy loop and using break.
86 * - It assumes it is always possible for control to flow from a loop
88 * is not true (since all execution paths through the loop might
101 * continue to the top of the innermost enclosing loop, break out
109 * continue to the top of the innermost enclosing loop, break out
116 * continue to the top of the innermost enclosing loop, break ou
162 ir_loop* loop; member in struct:loop_record
272 struct loop_record loop; member in struct:ir_lower_jumps_visitor
    [all...]
  /external/skia/third_party/lua/src/
lvm.c 77 ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */
111 int loop; local
112 for (loop = 0; loop < MAXTAGLOOP; loop++) {
132 luaG_runerror(L, "loop in gettable");
137 int loop; local
138 for (loop = 0; loop < MAXTAGLOOP; loop++)
    [all...]
  /external/syslinux/com32/lua/src/
lvm.c 100 ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */
134 int loop; local
135 for (loop = 0; loop < MAXTAGLOOP; loop++) {
155 luaG_runerror(L, "loop in gettable");
160 int loop; local
161 for (loop = 0; loop < MAXTAGLOOP; loop++)
    [all...]
  /external/v8/src/parsing/
pattern-rewriter.cc 572 WhileStatement* loop = factory()->NewWhileStatement(nullptr, nopos); local
580 loop->Initialize(condition, body);
583 block_->statements()->Add(loop, zone());
  /external/v8/src/x87/
codegen-x87.cc 254 Label loop, entry, convert_hole, gc_required, only_change_map; local
294 // Prepare for conversion loop.
310 __ bind(&loop);
337 __ j(not_sign, &loop);
368 Label loop, entry, convert_hole, gc_required, only_change_map, success; local
399 // Allocating heap numbers in the loop below can fail and cause a jump to
434 __ bind(&loop);
460 __ j(not_sign, &loop);
deoptimizer-x87.cc 210 Label loop, done; local
222 __ bind(&loop);
230 __ j(not_zero, &loop, Label::kNear);
335 // Outer loop state: eax = current FrameDescription**, edx = one past the
342 // Inner loop state: ebx = current FrameDescription*, ecx = loop index.
  /external/vixl/test/aarch32/
test-simulator-cond-rd-rn-rm-a32.cc 207 // It used to generate a loop over an instruction.
1531 Label loop; local
    [all...]
test-simulator-cond-rd-rn-rm-t32.cc 206 // It used to generate a loop over an instruction.
1529 Label loop; local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
jitter_buffer_unittest.cc 522 int loop = 0; local
531 loop++;
532 } while (loop < 98);
579 int loop = 0; local
587 loop++;
588 } while (loop < 98);
624 int loop = 0; local
633 loop++;
634 } while (loop < 98);
1480 int loop = 0; local
1530 int loop = 0; local
1781 int loop = 0; local
1829 int loop = 0; local
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
BackdropFrameRenderer.java 204 // Exit the renderer loop.
217 Looper.loop();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 96 Looper.loop(); // Blocks forever until Looper.quit() is called.
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerStateUnitTestTemplate.java 144 Looper.loop(); // Blocks forever until Looper.quit() is called.
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Transport.java 286 loop(); method
290 private void loop() { method in class:Transport.ReaderThread
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.cpp 158 // it is strictly verboten to call those methods outside of the event loop
399 int32_t loop; local
400 CHECK(msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop));
402 if (loop) {
  /frameworks/wilhelm/tests/sandbox/
reverb.c 225 bool loop = false; local
271 } else if (!strcmp(arg, "--loop")) {
272 loop = true;
282 "--player-name=I3DL2 --loop filename\n", prog);
422 if (loop) {
633 if (loop) {
  /hardware/intel/img/hwcomposer/merrifield/common/base/
DisplayAnalyzer.cpp 341 int loop = 0; local
342 while (loop++ < 6) {
347 if (loop >= 6) {
  /packages/apps/Messaging/src/com/android/messaging/util/
NotificationPlayer.java 113 Looper.loop();
270 * @param looping Whether the audio should loop forever.
  /prebuilts/go/darwin-x86/src/crypto/sha256/
sha256block_amd64.s 588 loop: label
677 JB loop
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha256/
sha256block_amd64.s 588 loop: label
677 JB loop
    [all...]
  /system/extras/simpleperf/
cmd_stat.cpp 397 IOEventLoop* loop = event_selection_set_.GetIOEventLoop(); local
398 if (!loop->AddSignalEvents({SIGCHLD, SIGINT, SIGTERM, SIGHUP},
399 [&]() { return loop->ExitLoop(); })) {
403 if (!loop->AddPeriodicEvent(SecondToTimeval(duration_in_sec_),
404 [&]() { return loop->ExitLoop(); })) {
424 if (!loop->AddPeriodicEvent(SecondToTimeval(interval_in_ms_ / 1000.0),
435 if (!loop->RunLoop()) {
  /cts/tests/app/src/android/app/cts/
PendingIntentTest.java 72 Looper.loop();
  /cts/tests/tests/media/src/android/media/cts/
ClearKeySystemTest.java 259 Looper.loop(); // Blocks forever until Looper.quit() is called.
MediaDrmMockTest.java 687 Looper.loop(); // Blocks forever until Looper.quit() is called.
765 Looper.loop(); // Blocks forever until Looper.quit() is called.
838 Looper.loop(); // Blocks forever until Looper.quit() is called.
    [all...]
PresentationSyncTest.java 308 Looper.loop();
311 Log.d(TAG, "loop exiting after " + durationNanos +

Completed in 1230 milliseconds

<<11121314151617181920>>