/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/ |
delay.h | 15 #define udelay(n) (__builtin_constant_p(n) ? ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c7ul)) : __udelay(n)) macro
|
/external/kernel-headers/original/asm-arm/ |
delay.h | 15 * it, it means that you're calling udelay() with an out of range value. 37 #define udelay(n) \ macro
|
/external/kernel-headers/original/asm-x86/ |
delay.h | 20 #define udelay(n) (__builtin_constant_p(n) ? \ macro
|
/external/grub/netboot/ |
3c595.c | 60 #define udelay(n) waiton_timer2(((n)*TICKS_PER_MS)/1000) macro 79 udelay(8000); 296 udelay(1000); 324 udelay(1000); 416 udelay(8000); 428 udelay(8000); 444 udelay(8000);
|
3c509.c | 33 #define udelay(n) waiton_timer2(((n)*TICKS_PER_MS)/1000) macro 78 udelay(1000); 129 udelay(1000); 285 udelay(1000); /* if incomplete wait 1 ms */ 368 udelay(10000); 478 udelay(1000); /* Must wait 800 ?s, be conservative */ 493 udelay(1000); /* wait 1 ms */
|
eepro100.c | 142 #define udelay(n) waiton_timer2(((n)*TICKS_PER_MS)/1000) macro 284 udelay(16); 304 udelay(16); 319 additional requirement dictating larger udelay's in the code below. 326 outw(EE_ENB, ee_addr); udelay(2); 327 outw(EE_ENB | EE_SHIFT_CLK, ee_addr); udelay(2); 332 outw(dataval, ee_addr); udelay(2); 333 outw(dataval | EE_SHIFT_CLK, ee_addr); udelay(2); 336 outw(EE_ENB, ee_addr); udelay(2); 525 udelay (10000) [all...] |
otulip.c | 71 static void udelay(unsigned long usec) { function 163 udelay(1000); 233 udelay(50000); /* wait for the setup packet to be processed */
|
eepro.c | 257 #define eeprom_delay() { udelay(40); } 261 #define eepro_full_reset(ioaddr) outb(RESET_CMD, ioaddr); udelay(40); 291 #define udelay(n) waiton_timer2(((n)*TICKS_PER_MS)/1000) macro 436 udelay(40);
|
fa311.c | 335 made udelay() unreliable.
|
i82586.c | 19 #define udelay(n) waiton_timer2(((n)*TICKS_PER_MS)/1000) macro 603 udelay(32);
|
w89c840.c | 709 made udelay() unreliable.
|
tlan.c | 861 udelay( 1000 ); [all...] |
tulip.c | 71 removed udelay code and used currticks() for more reliable delay 77 and udelay. We now wait for packet transmission to complete [all...] |
/hardware/invensense/mlsdk/platform/include/ |
mlos.h | 97 static inline void udelay(unsigned long usecs) function
|
/bootable/bootloader/legacy/include/boot/ |
boot.h | 103 void udelay(unsigned usecs);
|
/bootable/bootloader/legacy/libboot/ |
gpio_keypad.c | 63 udelay(keypad->settle_time);
|
/bootable/bootloader/legacy/arch_msm7k/ |
clock.c | 114 void udelay(unsigned usecs) function
|
mddi.c | 191 udelay(5);
|
/development/tools/emulator/opengl/host/libs/Translator/include/GL/ |
wglext.h | 696 extern BOOL WINAPI wglGenlockSourceDelayI3D (HDC hDC, UINT uDelay); 697 extern BOOL WINAPI wglGetGenlockSourceDelayI3D (HDC hDC, UINT *uDelay); 709 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT uDelay); 710 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT *uDelay); [all...] |
/external/kernel-headers/original/linux/mtd/ |
cfi.h | 461 udelay(us);
|