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

1234567

/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/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-hybrid-22k/lib_src/
H A DARM-E_mastergain_gnu.s72 loop: label
95 BGT 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.js48 function loop() {
55 PostMicrotask(loop);
57 PostMicrotask(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/sha/
H A Dsha512-x86_64.S35 jmp L$loop
38 L$loop:
1686 jb L$loop
H A Dsha1-x86_64.S38 jmp L$loop
41 L$loop:
1222 jnz L$loop
/external/v8/test/mjsunit/
H A Dconst-redecl.js180 // Test that const inside loop behaves correctly.
181 var loop = "for (var i = 0; i < 3; i++) { const x = i; }"; variable
182 TestAll(0, loop, "x");
183 TestAll(0, "var a,b,c,d,e,f,g,h; " + loop, "x");
/external/boringssl/src/crypto/modes/asm/
H A Dghash-x86_64.pl146 sub loop() {
239 &loop ($Xi);
145 sub loop() { subroutine
/external/compiler-rt/test/tsan/
H A Dsignal_errno.cc21 static __attribute__((noinline)) void loop() { function
39 loop();
/external/toybox/toys/other/
H A Dlosetup.c16 associated with a loop device.
20 -f Find first unused loop device (may create one)
36 #include <linux/loop.h>
53 allocate new loop device:
54 /dev/loop-control
63 struct loop_info64 *loop = (void *)(toybuf+32); local
67 // Open file (ffd) and loop device (lfd)
71 int i, cfd = open("/dev/loop-control", O_RDWR);
74 // just preallocate loop devices and stay within them.
76 // mount -o loop depend
[all...]
/external/valgrind/memcheck/tests/
H A Dsbfragment.c45 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/vixl/examples/
H A Dcrc-checksums.cc41 Label loop, end; local
51 __ Bind(&loop);
60 __ B(&loop);
H A Dfactorial.cc37 Label loop, end; local
44 __ Bind(&loop);
47 __ Cbnz(x1, &loop);
H A Dsum-array.cc39 Label loop, end; local
48 __ Bind(&loop);
54 __ Cbnz(w1, &loop);
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java93 public void setLoop(boolean loop) { argument
94 mLoop = loop;

Completed in 702 milliseconds

1234567