/linux/arch/mips/kernel/ |
H A D | spinlock_test.c | 14 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/ |
H A D | delay.c | 8 void __aligned(8) __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/ |
H A D | spi-altera-dfl.c | 53 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/ |
H A D | syscall.c | 26 static int loops = LOOPS_DEFAULT; variable 29 OPT_INTEGER('l', "loop", &loops, "Specify number of loops"), 87 for (i = 0; i < loops; i++) { in bench_syscall_common() 99 loops = 10000; in bench_syscall_common() 105 loops = 10000; in bench_syscall_common() 134 printf("# Executed %'d %s calls\n", loops, name); in bench_syscall_common() 144 (double)result_usec / (double)loops); in bench_syscall_common() 146 (int)((double)loops / in bench_syscall_common()
|
H A D | uprobe.c | 26 static int loops = LOOPS_DEFAULT; variable 37 OPT_INTEGER('l', "loop", &loops, "Specify number of loops"), 117 int printed = fprintf(fp, "# Executed %'d %s calls\n", loops, name); in bench_uprobe_format__default_fprintf() 128 printed += fprintf(fp, "\n\n %'.3f %ss/op", (double)diff / (double)loops, unit); in bench_uprobe_format__default_fprintf() 131 printed += fprintf(fp, " %'.3f %ss/op to baseline", (double)diff_to_baseline / (double)loops, unit); in bench_uprobe_format__default_fprintf() 134 printed += fprintf(fp, " %'.3f %ss/op to previous", (double)diff_to_previous / (double)loops, unit); in bench_uprobe_format__default_fprintf() 160 for (i = 0; i < loops; i++) { in bench_uprobe()
|
H A D | sched-seccomp-notify.c | 29 static uint64_t loops = LOOPS_DEFAULT; variable 33 OPT_U64('l', "loop", &loops, "Specify number of loops"), 74 for (nr = 0; nr < loops; nr++) { in user_notification_sync_loop() 148 loops); in bench_sched_seccomp_notify() 158 (double)result_usec / (double)loops); in bench_sched_seccomp_notify() 160 (int)((double)loops / in bench_sched_seccomp_notify()
|
H A D | sched-pipe.c | 45 static int loops = LOOPS_DEFAULT; 89 OPT_INTEGER('l', "loop", &loops, "Specify number of loops"), 206 for (i = 0; i < loops; i++) { in bench_sched_pipe() 306 loops, threaded ? "threads" : "processes"); in bench_sched_pipe() 316 (double)result_usec / (double)loops); 318 (int)((double)loops / 42 static int loops = LOOPS_DEFAULT; global() variable
|
/linux/arch/arc/include/asm/ |
H A D | delay.h | 22 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/ |
H A D | a20.c | 22 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/ |
H A D | delay.h | 13 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/ |
H A D | delay.h | 20 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/ |
H A D | map_benchmark.c | 31 atomic64_t loops; member 91 atomic64_inc(&map->loops); in map_benchmark_thread() 120 u64 loops; in do_map_benchmark() local 150 atomic64_set(&map->loops, 0); in do_map_benchmark() 170 loops = atomic64_read(&map->loops); in do_map_benchmark() 171 if (likely(loops > 0)) { in do_map_benchmark() 179 map->bparam.avg_map_100ns = div64_u64(sum_map, loops); in do_map_benchmark() 180 map->bparam.avg_unmap_100ns = div64_u64(sum_unmap, loops); in do_map_benchmark() 183 map_variance = div64_u64(sum_sq_map, loops) - in do_map_benchmark() 186 unmap_variance = div64_u64(sum_sq_unmap, loops) - in do_map_benchmark()
|
/linux/tools/gpio/ |
H A D | gpio-hammer.c | 26 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/parisc/include/asm/ |
H A D | delay.h | 5 static __inline__ void __delay(unsigned long loops) { in __delay() argument 10 : "=r" (loops) : "0" (loops)); in __delay()
|
/linux/arch/mips/cavium-octeon/ |
H A D | csrc-octeon.c | 72 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/sh/lib/ |
H A D | delay.c | 11 void __delay(unsigned long loops) in __delay() argument 28 : "=r" (loops) in __delay() 29 : "0" (loops) in __delay()
|
/linux/arch/sparc/include/asm/ |
H A D | delay_32.h | 13 static inline void __delay(unsigned long loops) in __delay() argument 18 "=&r" (loops) : in __delay() 19 "0" (loops) : in __delay()
|
/linux/tools/testing/radix-tree/ |
H A D | benchmark.c | 20 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/alpha/lib/ |
H A D | udelay.c | 23 __delay(int loops) in __delay() argument 32 : "=&r" (tmp), "=r" (loops) : "1"(loops)); in __delay()
|
/linux/arch/nios2/lib/ |
H A D | delay.c | 22 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/arm64/include/asm/ |
H A D | futex.h | 17 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/mips/lib/ |
H A D | delay.c | 28 void __delay(unsigned long loops) in __delay() argument 36 : "=r" (loops) in __delay() 37 : GCC_DADDI_IMM_ASM() (1), "0" (loops)); in __delay()
|
/linux/arch/openrisc/lib/ |
H A D | delay.c | 41 unsigned long long loops; in __const_udelay() local 43 loops = (unsigned long long)xloops * loops_per_jiffy * HZ; in __const_udelay() 45 __delay(loops >> 32); in __const_udelay()
|
/linux/arch/parisc/lib/ |
H A D | delay.c | 32 u32 bclock, now, loops = __loops; in __cr16_delay() local 40 if ((now - bclock) >= loops) in __cr16_delay() 59 loops -= (now - bclock); in __cr16_delay()
|
/linux/drivers/clocksource/ |
H A D | timer-vt8500.c | 45 int loops = msecs_to_loops(10); in vt8500_timer_read() local 48 && --loops) in vt8500_timer_read() 64 int loops = msecs_to_loops(10); in vt8500_timer_set_next_event() local 67 && --loops) in vt8500_timer_set_next_event()
|