Home
last modified time | relevance | path

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

/linux-6.1.9/tools/testing/selftests/net/mptcp/
Dsimult_flows.sh227 local rate1=$1
245 tc -n $ns1 qdisc add dev ns1eth1 root netem rate ${rate1}mbit $delay1
247 tc -n $ns2 qdisc add dev ns2eth1 root netem rate ${rate1}mbit $delay1
253 local time=$((1000 * size * 8 * 10 / ((rate1 + rate2) * 1000 * 1000 * 9) ))
/linux-6.1.9/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
Dphy_cmn.c1649 int rate_start_index = 0, rate1, rate2, k; in wlc_phy_txpower_reg_limit_calc() local
1651 for (rate1 = WL_TX_POWER_CCK_FIRST, rate2 = 0; in wlc_phy_txpower_reg_limit_calc()
1652 rate2 < WL_TX_POWER_CCK_NUM; rate1++, rate2++) in wlc_phy_txpower_reg_limit_calc()
1653 pi->txpwr_limit[rate1] = txpwr->cck[rate2]; in wlc_phy_txpower_reg_limit_calc()
1655 for (rate1 = WL_TX_POWER_OFDM_FIRST, rate2 = 0; in wlc_phy_txpower_reg_limit_calc()
1656 rate2 < WL_TX_POWER_OFDM_NUM; rate1++, rate2++) in wlc_phy_txpower_reg_limit_calc()
1657 pi->txpwr_limit[rate1] = txpwr->ofdm[rate2]; in wlc_phy_txpower_reg_limit_calc()
1700 for (rate1 = rate_start_index, rate2 = 0; in wlc_phy_txpower_reg_limit_calc()
1701 rate2 < BRCMS_NUM_RATES_OFDM; rate1++, rate2++) in wlc_phy_txpower_reg_limit_calc()
1702 pi->txpwr_limit[rate1] = in wlc_phy_txpower_reg_limit_calc()
[all …]
Dphy_n.c27880 u8 rate1, rate2; in wlc_phy_ofdm_to_mcs_powers_nphy() local
27883 for (rate1 = rate_mcs_start; rate1 <= rate_mcs_end - 1; rate1++) { in wlc_phy_ofdm_to_mcs_powers_nphy()
27884 power[rate1] = power[rate2]; in wlc_phy_ofdm_to_mcs_powers_nphy()
27885 rate2 += (rate1 == rate_mcs_start) ? 2 : 1; in wlc_phy_ofdm_to_mcs_powers_nphy()
27894 u8 rate1, rate2; in wlc_phy_mcs_to_ofdm_powers_nphy() local
27896 for (rate1 = rate_ofdm_start, rate2 = rate_mcs_start; in wlc_phy_mcs_to_ofdm_powers_nphy()
27897 rate1 <= rate_ofdm_end; rate1++, rate2++) { in wlc_phy_mcs_to_ofdm_powers_nphy()
27898 power[rate1] = power[rate2]; in wlc_phy_mcs_to_ofdm_powers_nphy()
27899 if (rate1 == rate_ofdm_start) in wlc_phy_mcs_to_ofdm_powers_nphy()
27900 power[++rate1] = power[rate2]; in wlc_phy_mcs_to_ofdm_powers_nphy()
[all …]
/linux-6.1.9/drivers/net/wireless/marvell/mwifiex/
Djoin.c134 static int mwifiex_get_common_rates(struct mwifiex_private *priv, u8 *rate1, in mwifiex_get_common_rates() argument
138 u8 *ptr = rate1, *tmp; in mwifiex_get_common_rates()
141 tmp = kmemdup(rate1, rate1_size, GFP_KERNEL); in mwifiex_get_common_rates()
147 memset(rate1, 0, rate1_size); in mwifiex_get_common_rates()
154 *rate1++ = tmp[j]; in mwifiex_get_common_rates()
/linux-6.1.9/drivers/clk/
Dclk-stm32h7.c750 u64 rate, rate1 = 0; in pll_fd_recalc_rate() local
768 rate1 = (u64)parent_rate * (u64)val; in pll_fd_recalc_rate()
769 do_div(rate1, (m * 8191)); in pll_fd_recalc_rate()
772 return rate + rate1; in pll_fd_recalc_rate()