Searched defs:loop (Results 1 - 25 of 266) sorted by relevance

1234567891011

/external/libvpx/libvpx/vpx_dsp/arm/
H A Dsad_media.asm33 mov r5, #8 ; loop count
35 loop label
84 subs r5, r5, #1 ; decrement loop counter
87 bne loop
H A Dvariance_halfpixvar16x16_h_media.asm35 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
166 bne loop
H A Dvariance_halfpixvar16x16_hv_media.asm35 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
207 bne loop
H A Dvariance_halfpixvar16x16_v_media.asm35 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
168 bne loop
/external/v8/test/mjsunit/regress/
H A Dregress-233.js32 function loop(s) { function
33 loop(s.replace(/\s/g, ""));
36 loop("No");
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
H A Dloop.js11 loop(mediaElements[i], loopCount);
15 function loop(element, loopCount) { function
40 element.loop = true;
42 // Dispatch willLoopEvent to measure loop time.
H A Dloop_unittest.py7 from telemetry.internal.actions import loop namespace
10 AUDIO_1_LOOP_CHECK = 'window.__hasEventCompleted("#audio_1", "loop");'
11 VIDEO_1_LOOP_CHECK = 'window.__hasEventCompleted("#video_1", "loop");'
23 action = loop.LoopAction(loop_count=2, selector='#video_1',
34 action = loop.LoopAction(loop_count=2, selector='all',
47 """Tests that wait_for_loop timeout_in_secondss if video does not loop."""
48 action = loop.LoopAction(loop_count=2, selector='#video_1',
/external/clang/test/Profile/
H A Dcxx-templates.cpp20 template <unsigned N> void loop() { function
39 loop<0>();
40 loop<100>();
/external/clang/test/CodeGen/
H A D2002-04-09-StructRetVal.c10 void loop(void) { function
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A DantRun.bat33 rem Slurp the command line arguments. This loop allows for an unlimited number
38 :loop label
42 goto loop
/external/libavc/encoder/arm/
H A Dih264e_evaluate_intra16x16_modes_a9q.s162 loop: label
179 bne loop
H A Dih264e_evaluate_intra_chroma_modes_a9q.s198 loop: label
231 bne loop
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_mastergain_gnu.s72 loop: label
95 BGT loop
/external/v8/test/promises-aplus/lib/
H A Dglobal.js39 function loop() {
46 %EnqueueMicrotask(loop);
48 %EnqueueMicrotask(loop);
/external/boringssl/mac-x86_64/crypto/md5/
H A Dmd5-x86_64.S37 L$loop:
653 jb L$loop
/external/boringssl/mac-x86_64/crypto/rand/
H A Drdrand-x86_64.S33 L$loop:
41 jnz L$loop
/external/libbrillo/brillo/message_loops/
H A Dmessage_loop_utils.cc13 MessageLoop* loop,
17 MessageLoop::TaskId task_id = loop->PostDelayedTask(
22 loop->RunOnce(true);
25 loop->CancelTask(task_id);
28 int MessageLoopRunMaxIterations(MessageLoop* loop, int iterations) { argument
30 for (result = 0; result < iterations && loop->RunOnce(false); result++) {}
12 MessageLoopRunUntil( MessageLoop* loop, base::TimeDelta timeout, base::Callback<bool()> terminate) argument
H A Dglib_message_loop.h42 // Called by the GLib's main loop when is time to call the callback scheduled
47 // Called by the GLib's main loop when the watched source |source| is
53 // Called by the GLib's main loop when the scheduled callback is removed due
65 GlibMessageLoop* loop; member in struct:brillo::GlibMessageLoop::ScheduledTask
/external/v8/test/mjsunit/
H A Dconst-redecl.js182 // Test that const inside loop behaves correctly.
183 var loop = "for (var i = 0; i < 3; i++) { const x = i; }"; variable
184 TestAll(0, loop, "x");
185 TestAll(0, "var a,b,c,d,e,f,g,h; " + loop, "x");
/external/avahi/examples/
H A Dglib-integration.c43 GMainLoop *loop = userdata; local
45 g_message ("GLIB API Timeout reached, quitting main loop!");
48 g_main_loop_quit (loop);
57 GMainLoop *loop = userdata; local
67 g_main_loop_quit (loop);
74 GMainLoop *loop = NULL; local
85 /* Create the GLIB main loop */
86 loop = g_main_loop_new (NULL, FALSE);
105 loop); /* User data to pass to function */
111 loop, /* Use
[all...]
/external/boringssl/src/crypto/modes/asm/
H A Dghash-x86_64.pl134 sub loop() {
227 &loop ($Xi);
133 sub loop() { subroutine
/external/compiler-rt/test/tsan/
H A Dsignal_errno.cc25 static __attribute__((noinline)) void loop() { function
43 loop();
/external/dbus/test/name-test/
H A Dtest-shutdown.c5 static DBusLoop *loop; variable
35 loop = _dbus_loop_new ();
36 if (loop == NULL)
39 if (!test_connection_setup (loop, connection))
42 test_connection_shutdown (loop, connection);
44 _dbus_loop_unref (loop);
H A Dtest-wait-for-echo.py14 loop = gobject.MainLoop() variable
22 loop.quit()
30 loop.quit()
40 loop.run()
/external/dbus/test/
H A Dtest-names.c4 static DBusLoop *loop; variable
61 loop = _dbus_loop_new ();
62 if (loop == NULL)
65 if (!test_connection_setup (loop, connection))

Completed in 1146 milliseconds

1234567891011