Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dtime.h226 ustosbt(int64_t _us) in ustosbt() argument
231 KASSERT(_us >= 0, ("Negative values illegal for ustosbt: %jd", _us)); in ustosbt()
233 if (_us >= SBT_1S) { in ustosbt()
234 sb = (_us / 1000000) * SBT_1S; in ustosbt()
235 _us = _us % 1000000; in ustosbt()
238 sb += ((_us * 9223372036855ull) + 0x7fffffff) >> 31; in ustosbt()
/f-stack/freebsd/net80211/
H A Dieee80211_proto.h275 #define IEEE80211_US_TO_TXOP(_us) ((_us)>>5) argument
/f-stack/dpdk/drivers/common/sfc_efx/
H A Defsys.h594 #define EFSYS_SPIN(_us) \ argument
596 rte_delay_us(_us); \