Searched refs:_ts (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/sys/sys/
H A Dtime.h220 bintime2timespec(const struct bintime *_bt, struct timespec *_ts) argument
223 _ts->tv_sec = _bt->sec;
224 _ts->tv_nsec = ((uint64_t)1000000000 *
229 timespec2bintime(const struct timespec *_ts, struct bintime *_bt) argument
232 _bt->sec = _ts->tv_sec;
234 _bt->frac = _ts->tv_nsec * (uint64_t)18446744073LL;
257 struct timespec _ts; local
259 _ts.tv_sec = _sbt >> 32;
260 _ts.tv_nsec = sbttons((uint32_t)_sbt);
261 return (_ts);
265 tstosbt(struct timespec _ts) argument
[all...]
/freebsd-11-stable/sys/dev/ath/
H A Dif_athvar.h1393 #define ath_hal_txprocdesc(_ah, _ds, _ts) \
1394 ((*(_ah)->ah_procTxDesc)((_ah), (_ds), (_ts)))

Completed in 65 milliseconds