Home
last modified time | relevance | path

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

/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_phy.c506 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; in ieee80211_compute_duration() local
524 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
525 KASSERT(bitsPerSymbol != 0, ("full rate bps")); in ieee80211_compute_duration()
528 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
534 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
535 KASSERT(bitsPerSymbol != 0, ("1/4 rate bps")); in ieee80211_compute_duration()
538 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
544 bitsPerSymbol = (kbps * OFDM_QUARTER_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
545 KASSERT(bitsPerSymbol != 0, ("1/2 rate bps")); in ieee80211_compute_duration()
548 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
[all …]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah.c406 uint32_t bitsPerSymbol, numBits, numSymbols, txTime; in ath_computedur_ht() local
412 bitsPerSymbol = ht40_bps[HT_RC_2_MCS(rate)]; in ath_computedur_ht()
414 bitsPerSymbol = ht20_bps[HT_RC_2_MCS(rate)]; in ath_computedur_ht()
416 numSymbols = howmany(numBits, bitsPerSymbol); in ath_computedur_ht()
434 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; in ath_hal_computetxtime() local
461 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
462 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
465 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
472 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
473 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
[all …]