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

/freebsd-11-stable/sys/sys/
H A Dtime.h238 bintime2timeval(const struct bintime *_bt, struct timeval *_tv) argument
241 _tv->tv_sec = _bt->sec;
242 _tv->tv_usec = ((uint64_t)1000000 * (uint32_t)(_bt->frac >> 32)) >> 32;
246 timeval2bintime(const struct timeval *_tv, struct bintime *_bt) argument
249 _bt->sec = _tv->tv_sec;
251 _bt->frac = _tv->tv_usec * (uint64_t)18446744073709LL;
274 struct timeval _tv; local
276 _tv.tv_sec = _sbt >> 32;
277 _tv.tv_usec = sbttous((uint32_t)_sbt);
278 return (_tv);
282 tvtosbt(struct timeval _tv) argument
[all...]
/freebsd-11-stable/sys/geom/journal/
H A Dg_journal.h270 struct timeval _tv; \
274 bintime2timeval(&_bt2, &_tv); \
280 printf(": %jd.%06jds\n", (intmax_t)_tv.tv_sec, \
281 (intmax_t)_tv.tv_usec); \
/freebsd-11-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 76 milliseconds