Home
last modified time | relevance | path

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

/NextBSD/tools/tools/net80211/wlantxtime/
HDwlantxtime.c333 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; in ieee80211_compute_duration() local
351 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
352 KASSERT(bitsPerSymbol != 0, ("full rate bps")); in ieee80211_compute_duration()
355 numSymbols = howmany(numBits, bitsPerSymbol); in ieee80211_compute_duration()
361 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; 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()
371 bitsPerSymbol = (kbps * OFDM_QUARTER_SYMBOL_TIME) / 1000; 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()
[all …]
/NextBSD/sys/net80211/
HDieee80211_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 …]
/NextBSD/sys/dev/ath/ath_hal/
HDah.c330 uint32_t bitsPerSymbol, numBits, numSymbols, txTime; in ath_computedur_ht() local
336 bitsPerSymbol = ht40_bps[rate & 0x1f]; in ath_computedur_ht()
338 bitsPerSymbol = ht20_bps[rate & 0x1f]; in ath_computedur_ht()
340 numSymbols = howmany(numBits, bitsPerSymbol); in ath_computedur_ht()
358 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; in ath_hal_computetxtime() local
383 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
384 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
387 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
393 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
394 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
[all …]