Searched refs:_tv (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/sys/sys/
H A Dtime.h299 bintime2timeval(const struct bintime *_bt, struct timeval *_tv) argument
302 _tv->tv_sec = _bt->sec;
303 _tv->tv_usec = ((uint64_t)1000000 * (uint32_t)(_bt->frac >> 32)) >> 32;
307 timeval2bintime(const struct timeval *_tv, struct bintime *_bt) argument
310 _bt->sec = _tv->tv_sec;
312 _bt->frac = _tv->tv_usec * (uint64_t)18446744073709LL;
335 struct timeval _tv; local
337 _tv.tv_sec = _sbt >> 32;
338 _tv.tv_usec = sbttous((uint32_t)_sbt);
339 return (_tv);
343 tvtosbt(struct timeval _tv) argument
[all...]
/freebsd-12-stable/sys/geom/journal/
H A Dg_journal.h272 struct timeval _tv; \
276 bintime2timeval(&_bt2, &_tv); \
282 printf(": %jd.%06jds\n", (intmax_t)_tv.tv_sec, \
283 (intmax_t)_tv.tv_usec); \
/freebsd-12-stable/contrib/wpa/src/utils/
H A Deloop.c1069 struct timeval _tv; local
1118 _tv.tv_sec = tv.sec;
1119 _tv.tv_usec = tv.usec;
1140 timeout ? &_tv : NULL);

Completed in 128 milliseconds