HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 126 - 150 of 1833) sorted by null

1 2 3 4 56 7 8 91011>>

  /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...]
  /system/core/toolbox/
mount.c 14 #include <linux/loop.h>
96 parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra, int* loop, char *loopdev)
100 *loop = 0;
109 if (strncmp(s, "loop=", 5) == 0) {
110 *loop = 1;
115 if (strcmp(s, "loop") == 0) {
116 *loop = 1;
165 do_mount(char *dev, char *dir, char *type, unsigned long rwflag, void *data, int loop,
171 if (loop) {
184 perror("open loop device failed")
305 int loop = 0; local
    [all...]
  /external/chromium_org/base/timer/
timer_unittest.cc 18 #if !defined(OS_IOS) // iOS does not allow direct running of the UI loop.
89 base::MessageLoop loop(message_loop_type);
101 base::MessageLoop loop(message_loop_type);
124 base::MessageLoop loop(message_loop_type);
137 base::MessageLoop loop(message_loop_type);
150 base::MessageLoop loop(message_loop_type);
189 base::MessageLoop loop(message_loop_type);
205 base::MessageLoop loop(message_loop_type);
238 base::MessageLoop loop(message_loop_type);
271 base::MessageLoop loop(message_loop_type)
378 base::MessageLoop loop; local
392 base::MessageLoop loop; local
405 base::MessageLoop loop; local
421 base::MessageLoop loop; local
432 base::MessageLoop loop; local
445 base::MessageLoop loop; local
480 base::MessageLoop loop; local
496 base::MessageLoop loop; local
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
callback_accounting.js 26 function loop() {
28 transaction.objectStore('store').get(0).onsuccess = loop;
31 loop();
  /external/chromium_org/gin/modules/
timer_unittest.cc 69 loop.PostDelayedTask(FROM_HERE, base::MessageLoop::QuitWhenIdleClosure(),
78 base::MessageLoop loop; member in struct:gin::__anon12942::TestHelper
96 helper.loop.Run();
112 helper.loop.Run();
132 helper.loop.Run();
149 helper.loop.Run();
  /external/replicaisland/src/com/replica/replicaisland/
SoundSystem.java 82 synchronized public final int play(Sound sound, boolean loop, int priority) {
85 stream = mSoundPool.play(sound.soundId, 1.0f, 1.0f, priority, loop ? -1 : 0, 1.0f);
86 if (loop) {
94 synchronized public final int play(Sound sound, boolean loop, int priority, float volume, float rate) {
97 stream = mSoundPool.play(sound.soundId, volume, volume, priority, loop ? -1 : 0, rate);
98 if (loop) {
  /external/chromium_org/ash/wm/
ash_native_cursor_manager_interactive_uitest.cc 71 base::RunLoop loop; local
79 loop.QuitClosure());
80 loop.Run();
  /external/chromium_org/ppapi/tests/
test_message_loop.cc 33 // The main thread message loop should be valid, and equal to the "current"
39 // We shouldn't be able to attach a new loop to the main thread.
40 pp::MessageLoop loop(instance_);
41 ASSERT_EQ(PP_ERROR_INPROGRESS, loop.AttachToCurrentThread());
47 // We can't run on a loop that isn't attached to a thread.
48 ASSERT_EQ(PP_ERROR_WRONG_THREAD, loop.Run());
  /external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
DependencyGraph.cpp 76 TGraphLoop* loop = new TGraphLoop(intermLoop); local
77 mAllNodes.push_back(loop);
78 return loop;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_high_subpixel_bilinear_sse2.asm 184 .loop:
189 jnz .loop
210 .loop:
215 jnz .loop
236 .loop:
243 jnz .loop
264 .loop:
269 jnz .loop
290 .loop:
295 jnz .loop
    [all...]
  /external/chromium_org/third_party/skia/bench/
ColorPrivBench.cpp 40 for (int loop = 0; loop < loops; loop++) {
43 // Note: we really want to load src and dst here and not outside in the i-loop.
46 // loop, so we'd only be benchmarking the back half of those functions that also
48 // clever compiler from hoisting the loads out of the loop on its own.
  /external/skia/bench/
ColorPrivBench.cpp 40 for (int loop = 0; loop < loops; loop++) {
43 // Note: we really want to load src and dst here and not outside in the i-loop.
46 // loop, so we'd only be benchmarking the back half of those functions that also
48 // clever compiler from hoisting the loads out of the loop on its own.
  /frameworks/native/services/sensorservice/tests/
sensorservicetest.cpp 83 sp<Looper> loop = new Looper(false); local
84 loop->addFd(q->getFd(), 0, ALOOPER_EVENT_INPUT, receiver, q.get());
88 int32_t ret = loop->pollOnce(-1);
  /external/chromium_org/chrome/common/
worker_thread_ticker_unittest.cc 49 base::MessageLoop loop; local
67 base::MessageLoop loop; local
84 base::MessageLoop loop; local
101 base::MessageLoop loop; local
  /external/chromium_org/components/policy/core/common/
async_policy_provider.h 53 // forwards to OnLoaderReloaded() on the loop that owns the provider,
55 static void LoaderUpdateCallback(scoped_refptr<base::MessageLoopProxy> loop,
  /external/chromium_org/net/dns/
serial_worker.h 64 base::MessageLoopProxy* loop() { return message_loop_.get(); } function in class:net::SerialWorker
82 // Posted to message loop in case WorkerPool is busy. (state == WAITING)
85 // Message loop for the thread of origin.
  /external/chromium_org/third_party/angle/src/compiler/translator/
DetectDiscontinuity.h 18 // Checks whether a loop can run for a variable number of iterations
26 bool visitLoop(Visit visit, TIntermLoop *loop);
  /external/chromium_org/third_party/angle/src/compiler/translator/timing/
RestrictFragmentShaderTiming.h 23 virtual void visitLoop(TGraphLoop* loop);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/inc/
SkPdfTokenLooper.h 58 virtual void loop() = 0;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdtlib.asm 18 .loop:
28 jmp .loop
  /external/chromium_org/v8/test/mjsunit/compiler/
dead-loops-neg.js 30 // Presents negative opportunities for dead loop removal.
40 // can only remove the loop with induction variable analysis.
47 // can only remove the loop with induction variable analysis.
54 // can only remove the loop with induction variable analysis.
63 // can only remove the loop by figuring out that all elements of {a} are 0.
68 // can only remove the loop by guarding on the type of a.
73 // can only remove the loop by guarding on the type of a.
78 // can only remove the loop by guarding on the type of a.
  /external/skia/experimental/PdfViewer/inc/
SkPdfTokenLooper.h 58 virtual void loop() = 0;
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
million.S 12 bne 0,test_loop # loop until zero
  /external/webrtc/src/system_wrappers/source/
file_impl.h 33 bool loop = false,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/cloog/
cloog.h 12 * CLooG : the Chunky Loop Generator (experimental) *
32 * CLooG, the Chunky Loop Generator *
55 #include <cloog/loop.h>

Completed in 1152 milliseconds

1 2 3 4 56 7 8 91011>>