Lines Matching defs:time
44 #include <sys/time.h>
278 * @time: microseconds to delay
286 ice_usec_delay(uint32_t time, bool sleep)
289 pause("ice_usec_delay", USEC_2_TICKS(time));
291 DELAY(time);
296 * @time: milliseconds to delay
304 ice_msec_delay(uint32_t time, bool sleep)
307 pause("ice_msec_delay", MSEC_2_TICKS(time));
309 DELAY(time * 1000);
313 * ice_msec_pause - pause (sleep) the thread for a time in milliseconds
314 * @time: milliseconds to sleep
319 ice_msec_pause(uint32_t time)
321 ice_msec_delay(time, true);
325 * ice_msec_spin - Spin the thread for a time in milliseconds
326 * @time: milliseconds to delay
331 ice_msec_spin(uint32_t time)
333 ice_msec_delay(time, false);