Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dtime.h321 bintime2timeval(const struct bintime *_bt, struct timeval *_tv) in bintime2timeval() argument
324 _tv->tv_sec = _bt->sec; in bintime2timeval()
325 _tv->tv_usec = __utime64_scale64_floor( in bintime2timeval()
333 _bt->sec = _tv->tv_sec; in timeval2bintime()
335 (uint64_t)_tv->tv_usec << 32, 1ULL << 32, 1000000); in timeval2bintime()
358 struct timeval _tv; in sbttotv() local
360 _tv.tv_sec = _sbt >> 32; in sbttotv()
361 _tv.tv_usec = sbttous((uint32_t)_sbt); in sbttotv()
362 return (_tv); in sbttotv()
366 tvtosbt(struct timeval _tv) in tvtosbt() argument
[all …]
/freebsd/sys/geom/journal/
H A Dg_journal.h252 struct timeval _tv; \
256 bintime2timeval(&_bt2, &_tv); \
262 printf(": %jd.%06jds\n", (intmax_t)_tv.tv_sec, \
263 (intmax_t)_tv.tv_usec); \
/freebsd/contrib/wpa/src/utils/
H A Deloop.c1079 struct timeval _tv; in eloop_run() local
1128 _tv.tv_sec = tv.sec; in eloop_run()
1129 _tv.tv_usec = tv.usec; in eloop_run()
1150 timeout ? &_tv : NULL); in eloop_run()