Lines Matching full:usec
34 void __udelay(unsigned long usec) in __udelay() argument
39 while (usec > 0) { in __udelay()
40 if (usec > 65000) in __udelay()
43 tmp = usec; in __udelay()
44 usec = usec - tmp; in __udelay()
119 void __udelay(unsigned long usec) in __udelay() argument
124 while (usec > 0) { in __udelay()
125 if (usec > 65000) in __udelay()
128 tmp = usec; in __udelay()
129 usec = usec - tmp; in __udelay()
184 unsigned long usec2ticks(unsigned long usec) in usec2ticks() argument
186 return get_timer(usec); in usec2ticks()