Home
last modified time | relevance | path

Searched refs:rate2 (Results 1 – 5 of 5) sorted by relevance

/src/sys/contrib/dev/broadcom/brcm80211/brcmsmac/phy/
H A Dphy_cmn.c1417 int rate_start_index = 0, rate1, rate2, k; in wlc_phy_txpower_reg_limit_calc() local
1419 for (rate1 = WL_TX_POWER_CCK_FIRST, rate2 = 0; in wlc_phy_txpower_reg_limit_calc()
1420 rate2 < WL_TX_POWER_CCK_NUM; rate1++, rate2++) in wlc_phy_txpower_reg_limit_calc()
1421 pi->txpwr_limit[rate1] = txpwr->cck[rate2]; in wlc_phy_txpower_reg_limit_calc()
1423 for (rate1 = WL_TX_POWER_OFDM_FIRST, rate2 = 0; in wlc_phy_txpower_reg_limit_calc()
1424 rate2 < WL_TX_POWER_OFDM_NUM; rate1++, rate2++) in wlc_phy_txpower_reg_limit_calc()
1425 pi->txpwr_limit[rate1] = txpwr->ofdm[rate2]; in wlc_phy_txpower_reg_limit_calc()
1458 for (rate2 = 0; rate2 < BRCMS_NUM_RATES_OFDM; in wlc_phy_txpower_reg_limit_calc()
1459 rate2++) { in wlc_phy_txpower_reg_limit_calc()
1460 tmp_txpwr_limit[rate2] = 0; in wlc_phy_txpower_reg_limit_calc()
[all …]
H A Dphy_n.c27872 u8 rate1, rate2; in wlc_phy_ofdm_to_mcs_powers_nphy() local
27874 rate2 = rate_ofdm_start; in wlc_phy_ofdm_to_mcs_powers_nphy()
27876 power[rate1] = power[rate2]; in wlc_phy_ofdm_to_mcs_powers_nphy()
27877 rate2 += (rate1 == rate_mcs_start) ? 2 : 1; in wlc_phy_ofdm_to_mcs_powers_nphy()
27886 u8 rate1, rate2; in wlc_phy_mcs_to_ofdm_powers_nphy() local
27888 for (rate1 = rate_ofdm_start, rate2 = rate_mcs_start; in wlc_phy_mcs_to_ofdm_powers_nphy()
27889 rate1 <= rate_ofdm_end; rate1++, rate2++) { in wlc_phy_mcs_to_ofdm_powers_nphy()
27890 power[rate1] = power[rate2]; in wlc_phy_mcs_to_ofdm_powers_nphy()
27892 power[++rate1] = power[rate2]; in wlc_phy_mcs_to_ofdm_powers_nphy()
27898 uint rate1, rate2, band_num; in wlc_phy_txpwr_apply_nphy() local
[all …]
/src/sys/contrib/dev/athk/ath12k/
H A Ddebugfs.c260 u16 rate1, rate2; in ath12k_tpc_get_rate() local
300 rate2 = tpc_stats->rates_array2.rate_array[eht_rate_idx]; in ath12k_tpc_get_rate()
302 rates = u32_get_bits(rate2, ATH12K_TPC_RATE_ARRAY_MU); in ath12k_tpc_get_rate()
304 rates = u32_get_bits(rate2, ATH12K_TPC_RATE_ARRAY_SU); in ath12k_tpc_get_rate()
/src/contrib/ofed/opensm/opensm/
H A Dosm_helper.c3275 int ib_path_compare_rates(IN const int rate1, IN const int rate2) in ib_path_compare_rates() argument
3280 CL_ASSERT(rate2 >= IB_MIN_RATE && rate2 <= IB_MAX_RATE); in ib_path_compare_rates()
3284 if (rate2 <= IB_MAX_RATE) in ib_path_compare_rates()
3285 orate2 = ordered_rates[rate2]; in ib_path_compare_rates()
/src/contrib/ofed/opensm/include/opensm/
H A Dosm_helper.h770 int ib_path_compare_rates(IN const int rate1, IN const int rate2);