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

1234567

/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dvp8_sad16x16_armv6.asm34 mov r5, #8 ; loop count
36 loop label
85 subs r5, r5, #1 ; decrement loop counter
88 bne loop
H A Dvp8_variance16x16_armv6.asm34 mov r12, #16 ; set loop counter to 16 (=block height)
36 loop label
141 bne loop
H A Dvp8_variance8x8_armv6.asm30 mov r12, #8 ; set loop counter to 8 (=block height)
34 loop label
89 bne loop
H A Dvp8_variance_halfpixvar16x16_h_armv6.asm35 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
166 bne loop
H A Dvp8_variance_halfpixvar16x16_hv_armv6.asm35 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
207 bne loop
H A Dvp8_variance_halfpixvar16x16_v_armv6.asm35 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
168 bne loop
/external/libvpx/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_mse16x16_armv6.asm34 mov r12, #16 ; set loop counter to 16 (=block height)
37 loop label
127 bne loop
H A Dvp8_subtract_armv6.asm40 mov r9, #4 ; loop count
55 subs r9, r9, #1 ; decrement loop counter
84 mov r4, #8 ; loop count
125 subs r4, r4, #1 ; update loop counter
131 mov r4, #8 ; loop count
170 subs r4, r4, #1 ; update loop counter
191 loop label
261 subs r4, r4, #1 ; update loop counter
264 bne loop
H A Dvp8_fast_quantize_b_armv6.asm41 ; PART 1: quantization and dequantization loop
42 loop label
96 lsls r2, r2, #2 ; update loop counter
102 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
/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);

Completed in 591 milliseconds

1234567