Home
last modified time | relevance | path

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

/freebsd-12.1/tools/tools/net80211/wlantxtime/
H A Dwlantxtime.c352 KASSERT(bitsPerSymbol != 0, ("full rate bps")); in ieee80211_compute_duration()
355 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
362 KASSERT(bitsPerSymbol != 0, ("1/4 rate bps")); in ieee80211_compute_duration()
365 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
372 KASSERT(bitsPerSymbol != 0, ("1/2 rate bps")); in ieee80211_compute_duration()
375 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
383 KASSERT(bitsPerSymbol != 0, ("turbo bps")); in ieee80211_compute_duration()
386 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
417 bitsPerSymbol = ht40_bps[rate & 0xf]; in ieee80211_compute_duration_ht()
419 bitsPerSymbol = ht20_bps[rate & 0xf]; in ieee80211_compute_duration_ht()
[all …]
/freebsd-12.1/sys/net80211/
H A Dieee80211_phy.c527 KASSERT(bitsPerSymbol != 0, ("full rate bps")); in ieee80211_compute_duration()
530 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
537 KASSERT(bitsPerSymbol != 0, ("1/4 rate bps")); in ieee80211_compute_duration()
540 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
547 KASSERT(bitsPerSymbol != 0, ("1/2 rate bps")); in ieee80211_compute_duration()
550 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
558 KASSERT(bitsPerSymbol != 0, ("turbo bps")); in ieee80211_compute_duration()
561 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
607 bitsPerSymbol = ht40_bps[rate & 0x1f]; in ieee80211_compute_duration_ht()
609 bitsPerSymbol = ht20_bps[rate & 0x1f]; in ieee80211_compute_duration_ht()
[all …]
/freebsd-12.1/sys/dev/ath/ath_hal/
H A Dah.c414 bitsPerSymbol = ht40_bps[HT_RC_2_MCS(rate)]; in ath_computedur_ht()
416 bitsPerSymbol = ht20_bps[HT_RC_2_MCS(rate)]; in ath_computedur_ht()
418 numSymbols = howmany(numBits, bitsPerSymbol); in ath_computedur_ht()
464 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
467 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
475 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
478 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
486 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
489 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
497 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
[all …]