Lines Matching refs:bitsPerSymbol
406 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()
476 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
483 bitsPerSymbol = (kbps * OFDM_QUARTER_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
484 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
487 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()
494 bitsPerSymbol = (kbps * TURBO_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
495 HALASSERT(bitsPerSymbol != 0); in ath_hal_computetxtime()
498 numSymbols = howmany(numBits, bitsPerSymbol); in ath_hal_computetxtime()