Searched defs:__delay (Results 1 - 25 of 33) sorted by relevance

12

/arch/cris/include/arch-v10/arch/
H A Ddelay.h4 static inline void __delay(int loops) function
/arch/unicore32/lib/
H A Ddelay.S45 ENTRY(__delay) function
47 bua __delay
51 ENDPROC(__delay)
/arch/cris/include/arch-v32/arch/
H A Ddelay.h15 __delay(int loops) function
/arch/parisc/include/asm/
H A Ddelay.h4 static __inline__ void __delay(unsigned long loops) { function
/arch/arc/include/asm/
H A Ddelay.h22 static inline void __delay(unsigned long loops) function
61 __delay(loops);
/arch/frv/include/asm/
H A Ddelay.h23 static inline void __delay(unsigned long loops) function
45 __delay(usecs * __delay_loops_MHz);
/arch/score/include/asm/
H A Ddelay.h6 static inline void __delay(unsigned long loops) function
23 __delay(usecs * loops_per_usec);
/arch/sparc/include/asm/
H A Ddelay_32.h12 static inline void __delay(unsigned long loops) function
/arch/tile/lib/
H A Ddelay.c39 void __delay(unsigned long cycles) function
45 EXPORT_SYMBOL(__delay); variable
/arch/alpha/lib/
H A Dudelay.c22 __delay(int loops) function
44 __delay((long)usecs >> 32);
52 __delay((long)nsecs >> 32);
/arch/arm64/lib/
H A Ddelay.c27 void __delay(unsigned long cycles) function
34 EXPORT_SYMBOL(__delay); variable
41 __delay(loops >> 32);
/arch/blackfin/include/asm/
H A Ddelay.h14 static inline void __delay(unsigned long loops) function
41 __delay(__to_delay(usecs));
46 __delay(__to_delay(1) * nsecs / 1000);
/arch/m32r/lib/
H A Ddelay.c17 void __delay(unsigned long loops) function
113 __delay(xloops * HZ);
126 EXPORT_SYMBOL(__delay); variable
/arch/mips/lib/
H A Ddelay.c26 void __delay(unsigned long loops) function
37 EXPORT_SYMBOL(__delay); variable
54 __delay((us * 0x000010c7ull * HZ * lpj) >> 32);
62 __delay((ns * 0x00000005ull * HZ * lpj) >> 32);
/arch/mn10300/lib/
H A Ddelay.c19 void __delay(unsigned long loops) function
34 EXPORT_SYMBOL(__delay); variable
/arch/sh/lib/
H A Ddelay.c10 void __delay(unsigned long loops) function
41 __delay(++xloops);
/arch/sh/lib64/
H A Dudelay.c24 void __delay(unsigned long loops) function
38 __delay(xloops * (HZ * cpu_data[raw_smp_processor_id()].loops_per_jiffy));
/arch/x86/um/
H A Ddelay.c15 void __delay(unsigned long loops) function
34 EXPORT_SYMBOL(__delay); variable
46 __delay(++xloops);
/arch/arm/include/asm/
H A Ddelay.h30 #define __delay(n) arm_delay_ops.delay(n) macro
/arch/avr32/lib/
H A Ddelay.c29 void __delay(unsigned long loops) function
46 __delay(loops >> 32);
/arch/c6x/include/asm/
H A Ddelay.h18 static inline void __delay(unsigned long loops) function
/arch/ia64/include/asm/
H A Ddelay.h78 __delay (unsigned long loops) function
/arch/m68k/include/asm/
H A Ddelay.h33 static inline void __delay(unsigned long loops) function
57 __delay(((((u) * HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6)
68 __delay(xloops * HZ);
117 #define ndelay(n) __delay(DIV_ROUND_UP((n) * ((((HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6), 1000));
/arch/metag/lib/
H A Ddelay.c19 * many times per-second. If it does wrap __delay will return prematurely,
27 void __delay(unsigned long loops) function
37 EXPORT_SYMBOL(__delay); variable
42 __delay(loops >> 32);
/arch/microblaze/include/asm/
H A Ddelay.h18 extern inline void __delay(unsigned long loops) function
20 asm volatile ("# __delay \n\t" \
58 __delay(loops);

Completed in 818 milliseconds

12