Lines Matching refs:hrtime_t
39 hrtime_t sip_timeout_val;
176 hrtime_t future_time; in sip_timeout()
180 hrtime_t now; in sip_timeout()
190 now = (hrtime_t)tspec.tv_sec * (hrtime_t)NANOSEC + tspec.tv_nsec; in sip_timeout()
191 future_time = (hrtime_t)timeout_time->tv_sec * (hrtime_t)NANOSEC + in sip_timeout()
192 (hrtime_t)(timeout_time->tv_usec * MILLISEC) + now; in sip_timeout()
194 future_time = (hrtime_t)timeout_time->tv_sec * (hrtime_t)NANOSEC + in sip_timeout()
195 (hrtime_t)(timeout_time->tv_usec * MILLISEC) + gethrtime(); in sip_timeout()
237 static hrtime_t
243 hrtime_t current_time; in sip_schedule_to_functions()
253 return ((hrtime_t)LONG_SLEEP_TIME + current_time); in sip_schedule_to_functions()
254 current_time = (hrtime_t)tspec.tv_sec * (hrtime_t)NANOSEC + in sip_schedule_to_functions()
260 return ((hrtime_t)LONG_SLEEP_TIME + current_time); in sip_schedule_to_functions()
294 return ((hrtime_t)LONG_SLEEP_TIME + current_time); in sip_schedule_to_functions()
305 hrtime_t current_time; in sip_timer_thr()
306 hrtime_t next_timeout; in sip_timer_thr()
307 hrtime_t delta; in sip_timer_thr()
312 delta = (hrtime_t)5 * NANOSEC; in sip_timer_thr()
317 to.tv_nsec = (hrtime_t)(tim.tv_usec * MILLISEC) + in sip_timer_thr()
334 current_time = (hrtime_t)tspec.tv_sec * (hrtime_t)NANOSEC + in sip_timer_thr()