Lines Matching refs:usec
33 void __udelay(unsigned long usec) in __udelay() argument
38 while (usec > 0) { in __udelay()
39 if (usec > 65000) in __udelay()
42 tmp = usec; in __udelay()
43 usec = usec - tmp; in __udelay()
118 void __udelay(unsigned long usec) in __udelay() argument
123 while (usec > 0) { in __udelay()
124 if (usec > 65000) in __udelay()
127 tmp = usec; in __udelay()
128 usec = usec - tmp; in __udelay()
183 unsigned long usec2ticks(unsigned long usec) in usec2ticks() argument
185 return get_timer(usec); in usec2ticks()