Searched refs:loops (Results 1 - 25 of 147) sorted by path

123456

/linux-master/arch/alpha/include/asm/
H A Ddelay.h5 extern void __delay(int loops);
/linux-master/arch/alpha/lib/
H A Dudelay.c23 __delay(int loops) argument
32 : "=&r" (tmp), "=r" (loops) : "1"(loops));
/linux-master/arch/arc/include/asm/
H A Ddelay.h22 static inline void __delay(unsigned long loops) argument
30 : "r"(loops)
37 * Normal Math for computing loops in "N" usecs
40 * loops per "N" usecs = ((loops_per_jiffy * HZ / 1000000) * N)
56 unsigned long loops; local
61 loops = ((u64) usecs * 4295 * HZ * loops_per_jiffy) >> 32;
63 __delay(loops);
/linux-master/arch/arm/lib/
H A Ddelay.c3 * Delay loops based on the OpenRISC implementation.
55 unsigned long long loops = xloops; local
56 loops *= arm_delay_ops.ticks_per_jiffy;
57 __timer_delay(loops >> UDELAY_SHIFT);
H A Dlib1funcs.S271 rsbmi r1, r1, #0 @ loops below use unsigned.
312 rsbmi r1, r1, #0 @ loops below use unsigned.
/linux-master/arch/m68k/include/asm/
H A Ddelay.h34 static inline void __delay(unsigned long loops) argument
40 : "=d" (loops)
41 : "0" (loops));
97 * ((((HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6) is the number of loops
104 * be the number of loops for n nanoseconds
/linux-master/arch/mips/include/asm/
H A Ddelay.h16 extern void __delay(unsigned long loops);
/linux-master/arch/nios2/lib/
H A Ddelay.c22 u64 loops; local
24 loops = (u64)xloops * loops_per_jiffy * HZ;
26 __delay(loops >> 32);
/linux-master/arch/parisc/include/asm/
H A Ddelay.h5 static __inline__ void __delay(unsigned long loops) { argument
10 : "=r" (loops) : "0" (loops));
/linux-master/arch/parisc/lib/
H A Ddelay.c32 u32 bclock, now, loops = __loops; local
40 if ((now - bclock) >= loops)
59 loops -= (now - bclock);
/linux-master/arch/sh/lib/
H A Dmemset-sh4.S53 shlr2 r3 ! number of loops
63 shld r0,r2 ! number of loops
/linux-master/arch/sparc/include/asm/
H A Ddelay_32.h13 static inline void __delay(unsigned long loops) argument
18 "=&r" (loops) :
19 "0" (loops) :
H A Ddelay_64.h12 void __delay(unsigned long loops);
/linux-master/arch/sparc/kernel/
H A Dtime_64.c779 void __delay(unsigned long loops) argument
783 while ((get_tick() - bclock) < loops)
/linux-master/arch/x86/boot/
H A Da20.c22 int loops = MAX_8042_LOOPS; local
25 while (loops--) {
54 static int a20_test(int loops) argument
64 while (loops--) {
130 int loops = A20_ENABLE_LOOPS; local
133 while (loops--) {
/linux-master/arch/x86/events/intel/
H A Dknc.c218 int bit, loops; local
231 loops = 0;
234 if (++loops > 100) {
/linux-master/arch/x86/um/
H A Ddelay.c12 void __delay(unsigned long loops) argument
28 : "a" (loops)
/linux-master/arch/xtensa/include/asm/
H A Ddelay.h20 static inline void __delay(unsigned long loops) argument
22 if (__builtin_constant_p(loops) && loops < 2)
24 else if (loops >= 2)
27 : "+r" (loops));
/linux-master/drivers/soc/fsl/qbman/
H A Dbman_test_api.c99 int i, loops = LOOPS; local
141 if (--loops)
/linux-master/include/asm-generic/
H A Ddelay.h12 extern void __delay(unsigned long loops);
/linux-master/tools/testing/radix-tree/
H A Dbenchmark.c20 int l, loops = 1; local
27 for (l = 0; l < loops; l++) {
42 if (loops == 1 && nsec * 5 < NSEC_PER_SEC) {
43 loops = NSEC_PER_SEC / nsec / 4 + 1;
48 nsec /= loops;
/linux-master/tools/testing/selftests/powerpc/pmu/
H A Dcount_instructions.c17 extern void thirty_two_instruction_loop(u64 loops);
/linux-master/tools/testing/selftests/powerpc/pmu/ebb/
H A Dinstruction_count_test.c21 extern void thirty_two_instruction_loop(uint64_t loops);
/linux-master/arch/alpha/kernel/
H A Dsrmcons.c51 int count = 0, loops = 0; local
59 } while((result.bits.status & 1) && (++loops < 10));
/linux-master/arch/arm/crypto/
H A Dsha1-armv4-large.S35 @ small = detached Xload/update, loops are folded;

Completed in 287 milliseconds

123456