Searched refs:_tv (Results 1 – 1 of 1) sorted by relevance
299 bintime2timeval(const struct bintime *_bt, struct timeval *_tv) in bintime2timeval() argument302 _tv->tv_sec = _bt->sec; in bintime2timeval()307 timeval2bintime(const struct timeval *_tv, struct bintime *_bt) in timeval2bintime() argument310 _bt->sec = _tv->tv_sec; in timeval2bintime()312 _bt->frac = _tv->tv_usec * (uint64_t)18446744073709LL; in timeval2bintime()335 struct timeval _tv; in sbttotv() local337 _tv.tv_sec = _sbt >> 32; in sbttotv()338 _tv.tv_usec = sbttous((uint32_t)_sbt); in sbttotv()339 return (_tv); in sbttotv()343 tvtosbt(struct timeval _tv) in tvtosbt() argument[all …]