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

/freebsd-10.0-release/sys/sys/
H A Dtime.h190 bintime2timeval(const struct bintime *_bt, struct timeval *_tv) argument
193 _tv->tv_sec = _bt->sec;
194 _tv->tv_usec = ((uint64_t)1000000 * (uint32_t)(_bt->frac >> 32)) >> 32;
198 timeval2bintime(const struct timeval *_tv, struct bintime *_bt) argument
201 _bt->sec = _tv->tv_sec;
203 _bt->frac = _tv->tv_usec * (uint64_t)18446744073709LL;
227 struct timeval _tv; local
229 _tv.tv_sec = _sbt >> 32;
230 _tv.tv_usec = ((uint64_t)1000000 * (uint32_t)_sbt) >> 32;
231 return (_tv);
235 tvtosbt(struct timeval _tv) argument
[all...]
/freebsd-10.0-release/sys/geom/journal/
H A Dg_journal.h259 struct timeval _tv; \
263 bintime2timeval(&_bt2, &_tv); \
269 printf(": %jd.%06jds\n", (intmax_t)_tv.tv_sec, \
270 (intmax_t)_tv.tv_usec); \
/freebsd-10.0-release/contrib/wpa/src/utils/
H A Deloop.c687 struct timeval _tv;
715 _tv.tv_sec = tv.sec;
716 _tv.tv_usec = tv.usec;
737 timeout ? &_tv : NULL);

Completed in 126 milliseconds