Home
last modified time | relevance | path

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

12345678

/linux/arch/mips/kernel/
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()
/linux/arch/csky/lib/
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()
/linux/drivers/spi/
A Dspi-altera-dfl.c53 int loops; in indirect_bus_reg_read() local
58 loops = 0; in indirect_bus_reg_read()
60 (loops++ < INDIRECT_TIMEOUT)) in indirect_bus_reg_read()
63 if (loops >= INDIRECT_TIMEOUT) { in indirect_bus_reg_read()
64 pr_err("%s timed out %d\n", __func__, loops); in indirect_bus_reg_read()
79 int loops; in indirect_bus_reg_write() local
84 loops = 0; in indirect_bus_reg_write()
86 (loops++ < INDIRECT_TIMEOUT)) in indirect_bus_reg_write()
89 if (loops >= INDIRECT_TIMEOUT) { in indirect_bus_reg_write()
90 pr_err("%s timed out %d\n", __func__, loops); in indirect_bus_reg_write()
/linux/tools/perf/bench/
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()
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()
/linux/arch/arc/include/asm/
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()
/linux/arch/x86/boot/
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()
/linux/arch/microblaze/include/asm/
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()
/linux/arch/xtensa/include/asm/
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()
/linux/kernel/dma/
A Dmap_benchmark.c54 atomic64_t loops; member
114 atomic64_inc(&map->loops); in map_benchmark_thread()
128 u64 loops; in do_map_benchmark() local
156 atomic64_set(&map->loops, 0); in do_map_benchmark()
172 loops = atomic64_read(&map->loops); in do_map_benchmark()
173 if (likely(loops > 0)) { in do_map_benchmark()
181 map->bparam.avg_map_100ns = div64_u64(sum_map, loops); in do_map_benchmark()
182 map->bparam.avg_unmap_100ns = div64_u64(sum_unmap, loops); in do_map_benchmark()
185 map_variance = div64_u64(sum_sq_map, loops) - in do_map_benchmark()
188 unmap_variance = div64_u64(sum_sq_unmap, loops) - in do_map_benchmark()
/linux/tools/gpio/
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()
/linux/arch/ia64/include/asm/
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()
/linux/arch/mips/cavium-octeon/
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()
/linux/arch/parisc/include/asm/
A Ddelay.h5 static __inline__ void __delay(unsigned long loops) { in __delay() argument
10 : "=r" (loops) : "0" (loops)); in __delay()
/linux/tools/testing/radix-tree/
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()
/linux/arch/sh/lib/
A Ddelay.c11 void __delay(unsigned long loops) in __delay() argument
28 : "=r" (loops) in __delay()
29 : "0" (loops) in __delay()
/linux/arch/arm64/include/asm/
A Dfutex.h17 unsigned int loops = FUTEX_MAX_LOOPS; \
34 "+r" (loops) \
85 unsigned int loops = FUTEX_MAX_LOOPS; in futex_atomic_cmpxchg_inatomic() local
109 : "+r" (ret), "=&r" (val), "+Q" (*uaddr), "=&r" (tmp), "+r" (loops) in futex_atomic_cmpxchg_inatomic()
/linux/arch/nds32/include/asm/
A Ddelay.h10 static inline void __delay(unsigned long loops) in __delay() argument
16 :"=r"(loops) in __delay()
17 :"0"(loops)); in __delay()
/linux/arch/sparc/include/asm/
A Ddelay_32.h13 static inline void __delay(unsigned long loops) in __delay() argument
18 "=&r" (loops) : in __delay()
19 "0" (loops) : in __delay()
/linux/arch/h8300/lib/
A Ddelay.c23 u64 loops; in __const_udelay() local
25 loops = (u64)xloops * loops_per_jiffy * HZ; in __const_udelay()
27 __delay(loops >> 32); in __const_udelay()
/linux/arch/alpha/lib/
A Dudelay.c23 __delay(int loops) in __delay() argument
32 : "=&r" (tmp), "=r" (loops) : "1"(loops)); in __delay()
/linux/arch/nios2/lib/
A Ddelay.c22 u64 loops; in __const_udelay() local
24 loops = (u64)xloops * loops_per_jiffy * HZ; in __const_udelay()
26 __delay(loops >> 32); in __const_udelay()
/linux/arch/mips/lib/
A Ddelay.c29 void __delay(unsigned long loops) in __delay() argument
37 : "=r" (loops) in __delay()
38 : GCC_DADDI_IMM_ASM() (1), "0" (loops)); in __delay()
/linux/arch/openrisc/lib/
A Ddelay.c40 unsigned long long loops; in __const_udelay() local
42 loops = (unsigned long long)xloops * loops_per_jiffy * HZ; in __const_udelay()
44 __delay(loops >> 32); in __const_udelay()
/linux/arch/parisc/lib/
A Ddelay.c32 u32 bclock, now, loops = __loops; in __cr16_delay() local
40 if ((now - bclock) >= loops) in __cr16_delay()
59 loops -= (now - bclock); in __cr16_delay()

Completed in 31 milliseconds

12345678