Searched refs:BICTCP_BETA_SCALE (Results 1 – 2 of 2) sorted by relevance
21 #define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation macro170 ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (BICTCP_BETA_SCALE + beta)) in bictcp_recalc_ssthresh()171 / (2 * BICTCP_BETA_SCALE); in bictcp_recalc_ssthresh()178 return max((tcp_snd_cwnd(tp) * beta) / BICTCP_BETA_SCALE, 2U); in bictcp_recalc_ssthresh()
27 #define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation in before() 43 static const int beta = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */54 static const __u32 beta_scale = 8*(BICTCP_BETA_SCALE+beta) / 355 / (BICTCP_BETA_SCALE - beta);408 ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta)) in BPF_PROG() 409 / (2 * BICTCP_BETA_SCALE); in BPF_PROG() 413 return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U); in BPF_PROG() 34 #define BICTCP_BETA_SCALE global() macro