Home
last modified time | relevance | path

Searched refs:_us (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/sys/sys/
Dtime.h230 ustosbt(int64_t _us) in ustosbt() argument
235 KASSERT(_us >= 0, ("Negative values illegal for ustosbt: %jd", _us)); in ustosbt()
237 if (_us >= 1000000) { in ustosbt()
238 sb = (_us / 1000000) * SBT_1S; in ustosbt()
239 _us = _us % 1000000; in ustosbt()
242 sb += ((_us * 9223372036855ull) + 0x7fffffff) >> 31; in ustosbt()
/freebsd-12-stable/sys/net80211/
Dieee80211_proto.h275 #define IEEE80211_US_TO_TXOP(_us) ((_us)>>5) argument
/freebsd-12-stable/sys/dev/ath/
Dif_athvar.h1194 #define ath_hal_setslottime(_ah, _us) \ argument
1195 ((*(_ah)->ah_setSlotTime)((_ah), (_us)))
1198 #define ath_hal_setacktimeout(_ah, _us) \ argument
1199 ((*(_ah)->ah_setAckTimeout)((_ah), (_us)))
1202 #define ath_hal_setctstimeout(_ah, _us) \ argument
1203 ((*(_ah)->ah_setCTSTimeout)((_ah), (_us)))
/freebsd-12-stable/sys/dev/sfxge/common/
Defsys.h1019 #define EFSYS_SPIN(_us) \ argument
1021 DELAY(_us); \