/linux-6.1.9/arch/csky/lib/ |
D | delay.c | 19 void __const_udelay(unsigned long xloops) in __const_udelay() function 27 EXPORT_SYMBOL(__const_udelay); 31 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */ in __udelay() 37 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
|
/linux-6.1.9/arch/x86/um/ |
D | delay.c | 33 inline void __const_udelay(unsigned long xloops) in __const_udelay() function 45 EXPORT_SYMBOL(__const_udelay); 49 __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */ in __udelay() 55 __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
|
/linux-6.1.9/arch/nios2/lib/ |
D | delay.c | 20 void __const_udelay(unsigned long xloops) in __const_udelay() function 28 EXPORT_SYMBOL(__const_udelay); 32 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */ in __udelay() 38 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
|
/linux-6.1.9/arch/openrisc/lib/ |
D | delay.c | 39 inline void __const_udelay(unsigned long xloops) in __const_udelay() function 47 EXPORT_SYMBOL(__const_udelay); 51 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */ in __udelay() 57 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
|
/linux-6.1.9/arch/arm64/lib/ |
D | delay.c | 53 inline void __const_udelay(unsigned long xloops) in __const_udelay() function 57 EXPORT_SYMBOL(__const_udelay); 61 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */ in __udelay() 67 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
|
/linux-6.1.9/arch/m68k/include/asm/ |
D | delay.h | 55 #define __const_udelay(u) \ macro 75 #define __const_udelay(n) (__xdelay((n) * 4295)) macro 81 __const_udelay(usecs); in __udelay() 92 ((n) > 20000 ? __bad_udelay() : __const_udelay(n)) : __udelay(n))
|
/linux-6.1.9/arch/sh/lib/ |
D | delay.c | 33 inline void __const_udelay(unsigned long xloops) in __const_udelay() function 47 __const_udelay(usecs * 0x000010c6); /* 2**32 / 1000000 */ in __udelay() 52 __const_udelay(nsecs * 0x00000005); in __ndelay()
|
/linux-6.1.9/include/asm-generic/ |
D | delay.h | 11 extern void __const_udelay(unsigned long xloops); 26 __const_udelay((n) * 0x10c7ul); \ 39 __const_udelay((n) * 5ul); \
|
/linux-6.1.9/arch/x86/lib/ |
D | delay.c | 207 noinline void __const_udelay(unsigned long xloops) in __const_udelay() function 219 EXPORT_SYMBOL(__const_udelay); 223 __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */ in __udelay() 229 __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
|
/linux-6.1.9/arch/arm/include/asm/ |
D | delay.h | 80 #define __const_udelay(n) arm_delay_ops.const_udelay(n) macro 85 __const_udelay((n) * UDELAY_MULT)) : \
|
/linux-6.1.9/arch/sh/kernel/ |
D | sh_ksyms_32.c | 17 EXPORT_SYMBOL(__const_udelay);
|
/linux-6.1.9/Documentation/admin-guide/ |
D | ramoops.rst | 162 …0 ffffffff811d9c54 ffffffff8101a7a0 __const_udelay <- native_machine_emergency_restart+0x110/0x1… 163 0 ffffffff811d9c34 ffffffff811d9c80 __delay <- __const_udelay+0x30/0x40
|
/linux-6.1.9/tools/power/pm-graph/config/ |
D | custom-timeline-functions.cfg | 185 __const_udelay: udelay loops=%di:s32
|
/linux-6.1.9/Documentation/translations/zh_CN/kernel-hacking/ |
D | hacking.rst | 646 ((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
|
/linux-6.1.9/tools/power/pm-graph/ |
D | README | 573 __const_udelay: YES
|
/linux-6.1.9/Documentation/kernel-hacking/ |
D | hacking.rst | 768 ((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
|
/linux-6.1.9/Documentation/translations/it_IT/kernel-hacking/ |
D | hacking.rst | 807 ((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
|