Lines Matching full:tv
48 struct timeval tv; in ns_to_timeval() local
52 tv.tv_sec = 0; in ns_to_timeval()
53 tv.tv_usec = 0; in ns_to_timeval()
54 return (tv); in ns_to_timeval()
57 tv.tv_sec = nsec / NSEC_PER_SEC; in ns_to_timeval()
60 tv.tv_sec--; in ns_to_timeval()
63 tv.tv_usec = rem / 1000; in ns_to_timeval()
64 return (tv); in ns_to_timeval()
68 timeval_to_ns(const struct timeval *tv) in timeval_to_ns() argument
70 return ((int64_t)tv->tv_sec * NSEC_PER_SEC) + in timeval_to_ns()
71 tv->tv_usec * NSEC_PER_USEC; in timeval_to_ns()