Searched refs:xloops (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sh/lib/
H A Ddelay.c22 inline void __const_udelay(unsigned long xloops) argument
26 : "=r" (xloops)
27 : "0" (xloops),
30 __delay(xloops);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m32r/lib/
H A Ddelay.c58 void __const_udelay(unsigned long xloops) argument
62 * loops [1] = (xloops >> 32) [sec] * loops_per_jiffy [1/jiffy]
64 * = (xloops >> 32) [sec] * (loops_per_jiffy * HZ) [1/sec]
65 * = (((xloops * loops_per_jiffy) >> 32) * HZ) [1]
78 : "+r" (xloops)
85 * ull = (u64)xloops * (u64)current_cpu_data.loops_per_jiffy;
86 * xloops = (ull >> 32);
105 : "+r" (xloops)
112 __delay(xloops * HZ);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-m68k/
H A Ddelay.h27 static inline void __const_udelay(unsigned long xloops) argument
32 : "=d" (xloops), "=d" (tmp)
33 : "d" (xloops), "1" (loops_per_jiffy));
34 __delay(xloops * HZ);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/i386/lib/
H A Ddelay.c77 inline void __const_udelay(unsigned long xloops) argument
81 xloops *= 4;
83 :"=d" (xloops), "=&a" (d0)
84 :"1" (xloops), "0"
87 __delay(++xloops);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/avr32/lib/
H A Ddelay.c37 inline void __const_udelay(unsigned long xloops) argument
43 : "r"(current_cpu_data.loops_per_jiffy * HZ), "r"(xloops));
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/x86_64/lib/
H A Ddelay.c41 inline void __const_udelay(unsigned long xloops) argument
43 __delay(((xloops * HZ * cpu_data[raw_smp_processor_id()].loops_per_jiffy) >> 32) + 1);

Completed in 101 milliseconds