Lines Matching refs:tv
50 struct timeval tv; in ns_to_timeval() local
54 tv.tv_sec = 0; in ns_to_timeval()
55 tv.tv_usec = 0; in ns_to_timeval()
56 return (tv); in ns_to_timeval()
59 tv.tv_sec = nsec / NSEC_PER_SEC; in ns_to_timeval()
62 tv.tv_sec--; in ns_to_timeval()
65 tv.tv_usec = rem / 1000; in ns_to_timeval()
66 return (tv); in ns_to_timeval()
70 timeval_to_ns(const struct timeval *tv) in timeval_to_ns() argument
72 return ((int64_t)tv->tv_sec * NSEC_PER_SEC) + in timeval_to_ns()
73 tv->tv_usec * NSEC_PER_USEC; in timeval_to_ns()