HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 51 - 75 of 1772) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
return_void_at_end_of_loop_lower_return.opt_test 5 # Test that a return of void at the end of a loop is properly
11 ((loop () () () ()
return_void_at_end_of_loop_lower_return_and_break.opt_test 5 # Test that a return of void at the end of a loop is properly
11 ((loop () () () ()
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
file_wrapper.h 38 bool loop = false,
47 bool loop = false) = 0;
81 // called with |loop| == true or |readOnly| == true.
  /external/chromium_org/ui/views/controls/menu/
menu_message_loop_mac.cc 34 base::MessageLoopForUI* loop = base::MessageLoopForUI::current(); local
35 base::MessageLoop::ScopedNestableTaskAllower allow(loop);
  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_2.opt_test 5 # If a loop contains a conditional break at the bottom of it,
11 ((loop () () () ()
lower_breaks_4.opt_test 5 # If a loop contains a conditional break at the bottom of it,
11 ((loop () () () ()
return_non_void_at_end_of_loop_lower_nothing.opt_test 5 # Test that a non-void return at the end of a loop is
11 ((loop () () () ()
return_non_void_at_end_of_loop_lower_return.opt_test 5 # Test that a non-void return at the end of a loop is
11 ((loop () () () ()
return_non_void_at_end_of_loop_lower_return_and_break.opt_test 5 # Test that a non-void return at the end of a loop is
11 ((loop () () () ()
return_void_at_end_of_loop_lower_nothing.opt_test 5 # Test that a return of void at the end of a loop is properly
11 ((loop () () () ()
return_void_at_end_of_loop_lower_return.opt_test 5 # Test that a return of void at the end of a loop is properly
11 ((loop () () () ()
return_void_at_end_of_loop_lower_return_and_break.opt_test 5 # Test that a return of void at the end of a loop is properly
11 ((loop () () () ()
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock_internal.h 60 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock_internal.h 60 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop);
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 32 // Lower MemTransferInst or load-store pair to loop
55 IRBuilder<> loop(loopBB);
56 // The loop index (ind) is a phi node.
57 PHINode *ind = loop.CreatePHI(indType, 0);
62 Value *val = loop.CreateLoad(loop.CreateGEP(srcAddr, ind), srcVolatile);
64 loop.CreateStore(val, loop.CreateGEP(dstAddr, ind), dstVolatile);
67 Value *newind = loop.CreateAdd(ind, ConstantInt::get(indType, 1));
70 loop.CreateCondBr(loop.CreateICmpULT(newind, len), loopBB, newBB)
    [all...]
  /frameworks/av/include/media/nbaio/
LibsndfileSource.h 30 // If 'loop' is true and it permits seeking, then we'll act as an infinite source
31 LibsndfileSource(SNDFILE *sndfile, const SF_INFO &sfinfo, bool loop = false);
  /libcore/luni/src/main/java/java/util/
Random.java 112 int rand = 0, count = 0, loop = 0; local
114 if (loop == 0) {
116 loop = 3;
118 loop--;
  /system/core/toolbox/
umount.c 8 #include <linux/loop.h>
60 int loop, loop_fd; local
68 loop = is_loop_mount(argv[1], loopdev);
74 if (loop) {
75 // free the loop device
78 fprintf(stderr, "open loop device failed: %s\n", strerror(errno));
  /external/chromium_org/content/child/
worker_task_runner.cc 33 ThreadLocalState(int id, const WebWorkerRunLoop& loop)
34 : id_(id), run_loop_(loop) {
90 void WorkerTaskRunner::OnWorkerRunLoopStarted(const WebWorkerRunLoop& loop) {
93 current_tls_.Set(new ThreadLocalState(id, loop));
96 loop_map_[id] = loop;
99 void WorkerTaskRunner::OnWorkerRunLoopStopped(const WebWorkerRunLoop& loop) {
105 DCHECK(loop_map_[CurrentWorkerId()] == loop);
  /external/proguard/src/proguard/classfile/util/
DescriptorClassEnumeration.java 94 loop: while (index < descriptor.length())
121 continue loop; local
125 continue loop; local
132 break loop; local
143 break loop; local
174 loop: while (true)
182 break loop; local
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
loop_unittest.py 7 from telemetry.page.actions import loop namespace
11 AUDIO_1_LOOP_CHECK = 'window.__hasEventCompleted("#audio_1", "loop");'
12 VIDEO_1_LOOP_CHECK = 'window.__hasEventCompleted("#video_1", "loop");'
23 """Tests that with no selector Loop action loops first media element."""
25 action = loop.LoopAction(data)
34 """Tests that Loop action loops all video elements with selector='all'."""
36 action = loop.LoopAction(data)
48 """Tests that wait_for_loop timeouts if video does not loop."""
52 action = loop.LoopAction(data)
59 """Tests that loop action fails with no loop count.""
    [all...]
  /external/valgrind/main/memcheck/tests/
sbfragment.c 45 int loop; local
47 // two optional arguments: [nr of loop] [debug]
49 loop = atoi(argv[1]);
51 loop = 3000;
64 for (i = 0; i < loop; i++)
77 printf ("after %d loops, last size block requested %lu\n", loop, bigsize);
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/base/message_loop/
message_loop.h 70 // hr = DoDragDrop(...); // Implicitly runs a modal message loop.
159 // from within a message loop at some point in the future.
236 // Run the message loop.
261 // which nested run loop you are quitting, so be careful!
278 // Set the timer slack for this message loop.
283 // Returns true if this loop is |type|. This allows subclasses (especially
290 // Optional call to connect the thread name with this loop.
297 // Gets the message loop proxy associated with this message loop.
303 // of recursive message loops. Some unwanted message loop may occurs whe
524 MessageLoop* loop = MessageLoop::current(); local
531 MessageLoop* loop = MessageLoop::current(); local
590 MessageLoop* loop = MessageLoop::current(); local
596 MessageLoop* loop = MessageLoop::current(); local
    [all...]

Completed in 615 milliseconds

1 23 4 5 6 7 8 91011>>