taglinefilesource code
usecs91drivers/char/ftape/fdc-io.cint fdc_wait(int usecs, byte mask, byte state)
usecs93drivers/char/ftape/fdc-io.cint count_1 = (fdc_calibr_count * usecs - 1) / fdc_calibr_time;
usecs104drivers/char/ftape/fdc-io.cint fdc_ready_wait(int usecs)
usecs106drivers/char/ftape/fdc-io.creturn fdc_wait(usecs, FDC_DATA_READY, FDC_DATA_READY);
usecs109drivers/char/ftape/fdc-io.cstatic void fdc_usec_wait(int usecs)
usecs111drivers/char/ftape/fdc-io.cfdc_wait(usecs, 0, 1);  /* will always timeout ! */
usecs114drivers/char/ftape/fdc-io.cint fdc_ready_out_wait(int usecs)
usecs117drivers/char/ftape/fdc-io.creturn fdc_wait(usecs, FDC_DATA_OUT_READY, FDC_DATA_OUT_READY);
usecs120drivers/char/ftape/fdc-io.cint fdc_ready_in_wait(int usecs)
usecs123drivers/char/ftape/fdc-io.creturn fdc_wait(usecs, FDC_DATA_OUT_READY, FDC_DATA_IN_READY);
usecs102drivers/char/ftape/ftape-io.cvoid udelay(int usecs)
usecs104drivers/char/ftape/ftape-io.cvolatile int count = (1 + (usecs * ftape_udelay_count - 1) /
usecs57drivers/char/ftape/ftape-io.hextern void udelay(int usecs);
usecs1870drivers/sound/ad1848.cad1848_tmr_start (int dev, unsigned int usecs)
usecs1898drivers/sound/ad1848.cdivider = (usecs * 1000 + xtal_nsecs / 2) / xtal_nsecs;
usecs253drivers/sound/dev_table.hunsigned int (*tmr_start)(int dev, unsigned int usecs);
usecs29include/asm-alpha/delay.hextern __inline__ void udelay(unsigned long usecs)
usecs31include/asm-alpha/delay.husecs *= 0x000010c6f7a0b5edUL;    /* 2**64 / 1000000 */
usecs33include/asm-alpha/delay.h:"=r" (usecs)
usecs34include/asm-alpha/delay.h:"r" (usecs),"r" (loops_per_sec));
usecs35include/asm-alpha/delay.h__delay(usecs);
usecs33include/asm-i386/delay.hextern __inline__ void udelay(unsigned long usecs)
usecs35include/asm-i386/delay.husecs *= 0x000010c6;    /* 2**32 / 1000000 */
usecs37include/asm-i386/delay.h:"=d" (usecs)
usecs39include/asm-i386/delay.h:"a" (usecs),"0" (cpu_data[smp_processor_id()].udelay_val)
usecs41include/asm-i386/delay.h:"a" (usecs),"0" (loops_per_sec)
usecs45include/asm-i386/delay.h__delay(usecs);
usecs25include/asm-m68k/delay.hextern __inline__ void udelay(unsigned long usecs)
usecs27include/asm-m68k/delay.husecs *= 0x000010c6;    /* 2**32 / 1000000 */
usecs30include/asm-m68k/delay.h: "=d" (usecs)
usecs31include/asm-m68k/delay.h: "d" (usecs),
usecs33include/asm-m68k/delay.h__delay(usecs);
usecs27include/asm-mips/delay.hextern __inline__ void udelay(unsigned long usecs)
usecs29include/asm-mips/delay.husecs *= 0x000010c6;    /* 2**32 / 1000000 */
usecs32include/asm-mips/delay.h:"=r" (usecs)
usecs33include/asm-mips/delay.h:"0" (usecs),"r" (loops_per_sec));
usecs34include/asm-mips/delay.h__delay(usecs);
usecs22include/asm-sparc/delay.hextern void udelay(unsigned long usecs);