/Linux-v5.4/arch/x86/lib/ |
D | delay.c | 31 static void delay_loop(unsigned long loops) in delay_loop() argument 47 :"a" (loops) in delay_loop() 54 u64 bclock, now, loops = __loops; in delay_tsc() local 62 if ((now - bclock) >= loops) in delay_tsc() 80 loops -= (now - bclock); in delay_tsc() 95 u64 start, end, delay, loops = __loops; in delay_mwaitx() local 101 if (loops == 0) in delay_mwaitx() 107 delay = min_t(u64, MWAITX_MAX_LOOPS, loops); in delay_mwaitx() 124 if (loops <= end - start) in delay_mwaitx() 127 loops -= end - start; in delay_mwaitx() [all …]
|
/Linux-v5.4/arch/mips/kernel/ |
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-v5.4/arch/csky/lib/ |
D | delay.c | 8 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-v5.4/arch/arc/include/asm/ |
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-v5.4/arch/x86/boot/ |
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-v5.4/arch/microblaze/include/asm/ |
D | delay.h | 18 static inline void __delay(unsigned long loops) in __delay() argument 24 : "=r" (loops) in __delay() 25 : "0" (loops)); in __delay() 52 unsigned loops = tmp >> 32; in __udelay() local 58 __delay(loops); in __udelay()
|
/Linux-v5.4/arch/xtensa/include/asm/ |
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-v5.4/tools/gpio/ |
D | gpio-hammer.c | 26 unsigned int loops) in hammer_device() argument 93 if (loops && iteration == loops) in hammer_device() 123 unsigned int loops = 0; in main() local 132 loops = strtoul(optarg, NULL, 10); in main() 152 return hammer_device(device_name, lines, nlines, loops); in main()
|
D | gpio-event-mon.c | 31 unsigned int loops) in monitor_device() argument 113 if (i == loops) in monitor_device() 146 unsigned int loops = 0; in main() local 154 loops = strtoul(optarg, NULL, 10); in main() 190 eventflags, loops); in main()
|
/Linux-v5.4/arch/ia64/include/asm/ |
D | delay.h | 76 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-v5.4/tools/perf/bench/ |
D | sched-pipe.c | 38 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-v5.4/arch/parisc/include/asm/ |
D | delay.h | 5 static __inline__ void __delay(unsigned long loops) { in __delay() argument 10 : "=r" (loops) : "0" (loops)); in __delay()
|
/Linux-v5.4/arch/sh/lib64/ |
D | udelay.c | 24 void __delay(unsigned long loops) in __delay() argument 31 "ptabs %1, tr0\n\t":"=r"(loops), in __delay() 33 :"0"(loops)); in __delay()
|
/Linux-v5.4/arch/sh/lib/ |
D | delay.c | 11 void __delay(unsigned long loops) in __delay() argument 28 : "=r" (loops) in __delay() 29 : "0" (loops) in __delay()
|
/Linux-v5.4/arch/nds32/include/asm/ |
D | delay.h | 10 static inline void __delay(unsigned long loops) in __delay() argument 16 :"=r"(loops) in __delay() 17 :"0"(loops)); in __delay()
|
/Linux-v5.4/arch/sparc/include/asm/ |
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-v5.4/arch/h8300/lib/ |
D | delay.c | 23 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-v5.4/arch/alpha/lib/ |
D | udelay.c | 23 __delay(int loops) in __delay() argument 32 : "=&r" (tmp), "=r" (loops) : "1"(loops)); in __delay()
|
/Linux-v5.4/arch/mips/lib/ |
D | delay.c | 27 void __delay(unsigned long loops) in __delay() argument 35 : "=r" (loops) in __delay() 36 : GCC_DADDI_IMM_ASM() (1), "0" (loops)); in __delay()
|
/Linux-v5.4/arch/nios2/lib/ |
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-v5.4/arch/openrisc/lib/ |
D | delay.c | 40 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-v5.4/arch/parisc/lib/ |
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-v5.4/arch/arm64/include/asm/ |
D | futex.h | 17 unsigned int loops = FUTEX_MAX_LOOPS; \ 39 "+r" (loops) \ 91 unsigned int loops = FUTEX_MAX_LOOPS; in futex_atomic_cmpxchg_inatomic() local 119 : "+r" (ret), "=&r" (val), "+Q" (*uaddr), "=&r" (tmp), "+r" (loops) in futex_atomic_cmpxchg_inatomic()
|
/Linux-v5.4/arch/mips/cavium-octeon/ |
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-v5.4/tools/testing/radix-tree/ |
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()
|