Home
last modified time | relevance | path

Searched refs:loops (Results 1 – 25 of 308) sorted by relevance

12345678910>>...13

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dsmp.c52 struct loop loops[8]; /* loops */ member
82 lsx_readdw(ft, &(trailer->loops[i].start)); in readtrailer()
83 ft->oob.loops[i].start = trailer->loops[i].start; in readtrailer()
84 lsx_readdw(ft, &(trailer->loops[i].end)); in readtrailer()
85 ft->oob.loops[i].length = in readtrailer()
86 trailer->loops[i].end - trailer->loops[i].start; in readtrailer()
87 lsx_readb(ft, &(trailer->loops[i].type)); in readtrailer()
88 ft->oob.loops[i].type = trailer->loops[i].type; in readtrailer()
89 lsx_readw(ft, &(trailer->loops[i].count)); in readtrailer()
90 ft->oob.loops[i].count = trailer->loops[i].count; in readtrailer()
[all …]
H A Daiff.c235 ft->oob.loops[0].type = looptype; in lsx_aiffstartread()
239 ft->oob.loops[1].type = looptype; in lsx_aiffstartread()
416 if (ft->oob.loops[0].type != 0) { in lsx_aiffstartread()
417 ft->oob.loops[0].start = marks[slbIndex].position; in lsx_aiffstartread()
418 ft->oob.loops[0].length = in lsx_aiffstartread()
421 ft->oob.loops[0].count = 1; in lsx_aiffstartread()
422 ft->oob.instr.loopmode = SOX_LOOP_SUSTAIN_DECAY | ft->oob.loops[0].type; in lsx_aiffstartread()
425 if (ft->oob.loops[1].type != 0) { in lsx_aiffstartread()
426 ft->oob.loops[1].start = marks[rlbIndex].position; in lsx_aiffstartread()
427 ft->oob.loops[1].length = in lsx_aiffstartread()
[all …]
/OK3568_Linux_fs/kernel/arch/mips/kernel/
H A Dspinlock_test.c14 int loops; in ss_get() local
18 loops = 1000000; in ss_get()
25 loops--; in ss_get()
26 if (loops == 0) in ss_get()
47 int loops; member
57 int loops; in multi_other() local
62 loops = s->loops; in multi_other()
79 loops--; in multi_other()
80 if (loops == 0) in multi_other()
98 ms.loops = 1000000; in multi_get()
/OK3568_Linux_fs/kernel/arch/csky/lib/
H A Ddelay.c8 void __delay(unsigned long loops) in __delay() argument
14 : "=r"(loops) in __delay()
15 : "0"(loops)); in __delay()
21 unsigned long long loops; in __const_udelay() local
23 loops = (unsigned long long)xloops * loops_per_jiffy * HZ; in __const_udelay()
25 __delay(loops >> 32); in __const_udelay()
/OK3568_Linux_fs/kernel/tools/perf/bench/
H A Dsyscall.c21 static int loops = LOOPS_DEFAULT; variable
24 OPT_INTEGER('l', "loop", &loops, "Specify number of loops"),
43 for (i = 0; i < loops; i++) in bench_syscall_basic()
51 printf("# Executed %'d getppid() calls\n", loops); in bench_syscall_basic()
61 (double)result_usec / (double)loops); in bench_syscall_basic()
63 (int)((double)loops / in bench_syscall_basic()
H A Dsched-pipe.c38 static int loops = LOOPS_DEFAULT; variable
44 OPT_INTEGER('l', "loop", &loops, "Specify number of loops"),
60 for (i = 0; i < loops; i++) { in worker_thread()
153 loops, threaded ? "threads" : "processes"); in bench_sched_pipe()
163 (double)result_usec / (double)loops); in bench_sched_pipe()
165 (int)((double)loops / in bench_sched_pipe()
/OK3568_Linux_fs/kernel/arch/arc/include/asm/
H A Ddelay.h22 static inline void __delay(unsigned long loops) in __delay() argument
30 : "r"(loops) in __delay()
56 unsigned long loops; in __udelay() local
61 loops = ((u64) usecs * 4295 * HZ * loops_per_jiffy) >> 32; in __udelay()
63 __delay(loops); in __udelay()
/OK3568_Linux_fs/kernel/arch/x86/boot/
H A Da20.c22 int loops = MAX_8042_LOOPS; in empty_8042() local
25 while (loops--) { in empty_8042()
54 static int a20_test(int loops) in a20_test() argument
64 while (loops--) { in a20_test()
130 int loops = A20_ENABLE_LOOPS; in enable_a20() local
133 while (loops--) { in enable_a20()
/OK3568_Linux_fs/u-boot/cmd/ddr_tool/memtester/
H A Dmemtester.c64 int doing_memtester(ul *arg, ul testenable, ul loops, ul err_exit, in doing_memtester() argument
92 for (loop = 1; ((!loops) || loop <= loops); loop++) { in doing_memtester()
99 if (loops) in doing_memtester()
100 printf("/%lu", loops); in doing_memtester()
159 ul loops = 0; in do_memtester() local
199 if (strict_strtoul(argv[7], 0, &loops) < 0) in do_memtester()
202 doing_memtester(arg, testenable, loops, err_exit, fix_bit, fix_level); in do_memtester()
/OK3568_Linux_fs/kernel/arch/microblaze/include/asm/
H A Ddelay.h13 static inline void __delay(unsigned long loops) in __delay() argument
19 : "=r" (loops) in __delay()
20 : "0" (loops)); in __delay()
47 unsigned loops = tmp >> 32; in __udelay() local
53 __delay(loops); in __udelay()
/OK3568_Linux_fs/kernel/arch/xtensa/include/asm/
H A Ddelay.h20 static inline void __delay(unsigned long loops) in __delay() argument
22 if (__builtin_constant_p(loops) && loops < 2) in __delay()
24 else if (loops >= 2) in __delay()
27 : "+r" (loops)); in __delay()
/OK3568_Linux_fs/u-boot/drivers/power/regulator/
H A Dtps65090_regulator.c91 int loops; in tps65090_fet_set_enable() local
97 for (loops = 0;; loops++) { in tps65090_fet_set_enable()
111 __func__, fet_id, get_timer(start), loops); in tps65090_fet_set_enable()
112 else if (loops) in tps65090_fet_set_enable()
114 __func__, fet_id, get_timer(start), loops); in tps65090_fet_set_enable()
/OK3568_Linux_fs/kernel/tools/gpio/
H A Dgpio-hammer.c26 unsigned int loops) in hammer_device() argument
101 if (loops && iteration == loops) in hammer_device()
131 unsigned int loops = 0; in main() local
140 loops = strtoul(optarg, NULL, 10); in main()
175 return hammer_device(device_name, lines, num_lines, loops); in main()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dcfgloop.h321 struct GTY (()) loops { struct
339 void init_loops_structure (struct function *, struct loops *, unsigned); argument
340 extern struct loops *flow_loops_find (struct loops *);
342 extern void flow_loops_free (struct loops *);
562 struct loops *loops = loops_for_fn (fn); in get_loops() local
563 if (!loops) in get_loops()
566 return loops->larray; in get_loops()
575 struct loops *loops = loops_for_fn (fn); in number_of_loops() local
576 if (!loops) in number_of_loops()
579 return vec_safe_length (loops->larray); in number_of_loops()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dcfgloop.h321 struct GTY (()) loops { struct
339 void init_loops_structure (struct function *, struct loops *, unsigned); argument
340 extern struct loops *flow_loops_find (struct loops *);
342 extern void flow_loops_free (struct loops *);
562 struct loops *loops = loops_for_fn (fn); in get_loops() local
563 if (!loops) in get_loops()
566 return loops->larray; in get_loops()
575 struct loops *loops = loops_for_fn (fn); in number_of_loops() local
576 if (!loops) in number_of_loops()
579 return vec_safe_length (loops->larray); in number_of_loops()
/OK3568_Linux_fs/kernel/arch/ia64/include/asm/
H A Ddelay.h76 extern void ia64_delay_loop (unsigned long loops);
79 __delay (unsigned long loops) in __delay() argument
81 if (unlikely(loops < 1)) in __delay()
84 ia64_delay_loop (loops - 1); in __delay()
/OK3568_Linux_fs/kernel/arch/mips/cavium-octeon/
H A Dcsrc-octeon.c72 unsigned loops = 2; in octeon_init_cvmcount() local
78 asm("" : "+r" (loops)); in octeon_init_cvmcount()
85 while (loops--) { in octeon_init_cvmcount()
172 void __delay(unsigned long loops) in __delay() argument
177 end = cur + loops; in __delay()
/OK3568_Linux_fs/kernel/tools/testing/selftests/kvm/
H A Dset_memory_region_test.c385 int i, loops; in main() local
403 loops = atoi(argv[1]); in main()
405 loops = 10; in main()
407 pr_info("Testing MOVE of in-use region, %d loops\n", loops); in main()
408 for (i = 0; i < loops; i++) in main()
411 pr_info("Testing DELETE of in-use region, %d loops\n", loops); in main()
412 for (i = 0; i < loops; i++) in main()
/OK3568_Linux_fs/kernel/tools/testing/radix-tree/
H A Dbenchmark.c20 int l, loops = 1; in benchmark_iter() local
27 for (l = 0; l < loops; l++) { in benchmark_iter()
42 if (loops == 1 && nsec * 5 < NSEC_PER_SEC) { in benchmark_iter()
43 loops = NSEC_PER_SEC / nsec / 4 + 1; in benchmark_iter()
48 nsec /= loops; in benchmark_iter()
/OK3568_Linux_fs/kernel/arch/parisc/include/asm/
H A Ddelay.h5 static __inline__ void __delay(unsigned long loops) { in __delay() argument
10 : "=r" (loops) : "0" (loops)); in __delay()
/OK3568_Linux_fs/kernel/arch/sh/lib/
H A Ddelay.c11 void __delay(unsigned long loops) in __delay() argument
28 : "=r" (loops) in __delay()
29 : "0" (loops) in __delay()
/OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/
H A Dsyslib.c21 void sdelay(unsigned long loops) in sdelay() argument
24 "bne 1b":"=r" (loops):"0"(loops)); in sdelay()
/OK3568_Linux_fs/kernel/arch/arm64/include/asm/
H A Dfutex.h17 unsigned int loops = FUTEX_MAX_LOOPS; \
39 "+r" (loops) \
90 unsigned int loops = FUTEX_MAX_LOOPS; in futex_atomic_cmpxchg_inatomic() local
118 : "+r" (ret), "=&r" (val), "+Q" (*uaddr), "=&r" (tmp), "+r" (loops) in futex_atomic_cmpxchg_inatomic()
/OK3568_Linux_fs/kernel/arch/nds32/include/asm/
H A Ddelay.h10 static inline void __delay(unsigned long loops) in __delay() argument
16 :"=r"(loops) in __delay()
17 :"0"(loops)); in __delay()
/OK3568_Linux_fs/kernel/arch/sparc/include/asm/
H A Ddelay_32.h13 static inline void __delay(unsigned long loops) in __delay() argument
18 "=&r" (loops) : in __delay()
19 "0" (loops) : in __delay()

12345678910>>...13