| /Linux-v4.19/net/ipv4/ |
| D | tcp_htcp.c | 27 u8 beta; /* Fixed point arith, << 7 */ member 154 ca->beta = BETA_MIN; in htcp_beta_update() 161 ca->beta = (minRTT << 7) / maxRTT; in htcp_beta_update() 162 if (ca->beta < BETA_MIN) in htcp_beta_update() 163 ca->beta = BETA_MIN; in htcp_beta_update() 164 else if (ca->beta > BETA_MAX) in htcp_beta_update() 165 ca->beta = BETA_MAX; in htcp_beta_update() 167 ca->beta = BETA_MIN; in htcp_beta_update() 193 ca->alpha = 2 * factor * ((1 << 7) - ca->beta); in htcp_alpha_update() 227 return max((tp->snd_cwnd * ca->beta) >> 7, 2U); in htcp_recalc_ssthresh() [all …]
|
| D | tcp_illinois.c | 50 u32 beta; /* Muliplicative decrease */ member 73 ca->beta = BETA_BASE; in tcp_illinois_init() 191 static u32 beta(u32 da, u32 dm) in beta() function 228 ca->beta = BETA_BASE; in update_params() 234 ca->beta = beta(da, dm); in update_params() 249 ca->beta = BETA_BASE; in tcp_illinois_state() 300 return max(tp->snd_cwnd - ((tp->snd_cwnd * ca->beta) >> BETA_SHIFT), 2U); in tcp_illinois_ssthresh()
|
| D | tcp_bic.c | 31 static int beta = 819; /* = 819/1024 (BICTCP_BETA_SCALE) */ variable 41 module_param(beta, int, 0644); 42 MODULE_PARM_DESC(beta, "beta for multiplicative increase"); 168 ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta)) in bictcp_recalc_ssthresh() 176 return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U); in bictcp_recalc_ssthresh()
|
| D | tcp_cubic.c | 47 static int beta __read_mostly = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */ 64 module_param(beta, int, 0644); 65 MODULE_PARM_DESC(beta, "beta for multiplicative increase"); 362 ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta)) in bictcp_recalc_ssthresh() 367 return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U); in bictcp_recalc_ssthresh() 477 beta_scale = 8*(BICTCP_BETA_SCALE+beta) / 3 in cubictcp_register() 478 / (BICTCP_BETA_SCALE - beta); in cubictcp_register()
|
| D | tcp_vegas.c | 44 static int beta = 4; variable 49 module_param(beta, int, 0644); 50 MODULE_PARM_DESC(beta, "upper bound of packets in network"); 252 if (diff > beta) { in tcp_vegas_cong_avoid()
|
| D | tcp_veno.c | 23 static const int beta = 3 << V_PARAM_SHIFT; variable 159 if (veno->diff < beta) { in tcp_veno_cong_avoid() 196 if (veno->diff < beta) in tcp_veno_ssthresh()
|
| /Linux-v4.19/net/sched/ |
| D | sch_pie.c | 45 u32 beta; /* and are used for shift relative to 1 */ member 83 params->beta = 20; in pie_params_init() 225 q->params.beta = nla_get_u32(tb[TCA_PIE_BETA]); in pie_change() 322 u32 alpha, beta; in calculate_probability() local 352 beta = in calculate_probability() 353 (q->params.beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 7; in calculate_probability() 357 beta = in calculate_probability() 358 (q->params.beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 5; in calculate_probability() 362 beta = in calculate_probability() 363 (q->params.beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4; in calculate_probability() [all …]
|
| /Linux-v4.19/kernel/bpf/ |
| D | tnum.c | 70 u64 dv, alpha, beta, chi, mu; in tnum_sub() local 74 beta = dv - b.mask; in tnum_sub() 75 chi = alpha ^ beta; in tnum_sub() 82 u64 alpha, beta, v; in tnum_and() local 85 beta = b.value | b.mask; in tnum_and() 87 return TNUM(v, alpha & beta & ~v); in tnum_and()
|
| /Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
| D | ctxgf108.c | 741 const u32 beta = grctx->attrib_nr; in gf108_grctx_generate_attrib() local 753 mmio_wr32(info, 0x405830, (beta << 16) | alpha); in gf108_grctx_generate_attrib() 759 const u32 b = beta; in gf108_grctx_generate_attrib()
|
| D | ctxgf117.c | 249 const u32 beta = grctx->attrib_nr; in gf117_grctx_generate_attrib() local 261 mmio_wr32(info, 0x405830, (beta << 16) | alpha); in gf117_grctx_generate_attrib() 267 const u32 b = beta * gr->ppc_tpc_nr[gpc][ppc]; in gf117_grctx_generate_attrib()
|
| /Linux-v4.19/Documentation/devicetree/bindings/hwmon/ |
| D | max6697.txt | 26 - beta-compensation-enable 27 Only valid for MAX6693 and MX6694. Set to enable beta compensation on
|
| /Linux-v4.19/drivers/net/wireless/ath/ath9k/ |
| D | ar9003_paprd.c | 432 int Q_scale_B, Q_beta, Q_alpha, alpha, beta, order_1, order_2; in create_pa_curve() local 637 beta = (beta_raw << 10) / scale_B; in create_pa_curve() 647 y5 = ((beta * tmp) >> 6) >> order1_5x; in create_pa_curve() 690 beta = (beta_raw << 10) / scale_B; in create_pa_curve() 706 if (beta > 0) in create_pa_curve() 707 y5 = (((beta * tmp - 64) >> 6) - in create_pa_curve() 710 y5 = ((((beta * tmp - 64) >> 6) + in create_pa_curve() 719 if (beta > 0) in create_pa_curve()
|
| /Linux-v4.19/arch/arm/boot/dts/ |
| D | rk3288-firefly-beta.dts | 11 compatible = "firefly,firefly-rk3288-beta", "rockchip,rk3288";
|
| /Linux-v4.19/Documentation/hwmon/ |
| D | lm95234 | 26 beta compensation technology allows sensing of 90 nm or 65 nm process
|
| D | w83792d | 119 need to upgrade to latest (or beta) BIOS. If it does not help please
|
| D | w83781d | 114 beta value in the sensor files. '1' is the PII/Celeron diode, '2' is the 406 old ASUS, it isn't marketed as Qfan. Maybe some beta pre-attempt at Qfan
|
| /Linux-v4.19/Documentation/isdn/ |
| D | CREDITS | 65 For heavy-duty-beta-testing with his BBS ;)
|
| D | README.x25 | 5 This is alpha/beta test code. Use it completely at your own risk.
|
| /Linux-v4.19/Documentation/filesystems/ |
| D | ecryptfs.txt | 30 In the beta/experimental releases of eCryptfs, when you upgrade
|
| /Linux-v4.19/Documentation/usb/ |
| D | iuu_phoenix.txt | 12 This driver is still in beta stage, so bugs can
|
| /Linux-v4.19/Documentation/media/v4l-drivers/ |
| D | zr364xx.rst | 38 This is a beta release of the driver. Since version 0.70, this driver is
|
| /Linux-v4.19/Documentation/networking/ |
| D | skfp.txt | 202 v1.00 beta 01 (980507)
|
| /Linux-v4.19/Documentation/devicetree/bindings/arm/ |
| D | rockchip.txt | 48 - compatible = "firefly,firefly-rk3288-beta", "rockchip,rk3288";
|
| /Linux-v4.19/drivers/net/ethernet/chelsio/cxgb3/ |
| D | common.h | 728 unsigned short beta[NCCTRL_WIN], unsigned short mtu_cap);
|
| /Linux-v4.19/Documentation/scsi/ |
| D | FlashPoint.txt | 138 I was a beta test site for the BT-948/958, and versions 1.2.1 and 1.3.1 of
|