Lines Matching refs:cnt
84 u32 cnt; /* increase cwnd by 1 after ACKs */ member
107 ca->cnt = 0; in bictcp_reset()
299 ca->cnt = cwnd / (bic_target - cwnd); in bictcp_update()
301 ca->cnt = 100 * cwnd; /* very small increment*/ in bictcp_update()
308 if (ca->last_max_cwnd == 0 && ca->cnt > 20) in bictcp_update()
309 ca->cnt = 20; /* increase cwnd 5% per RTT */ in bictcp_update()
325 if (ca->cnt > max_cnt) in bictcp_update()
326 ca->cnt = max_cnt; in bictcp_update()
333 ca->cnt = max(ca->cnt, 2U); in bictcp_update()
352 tcp_cong_avoid_ai(tp, ca->cnt, acked); in bictcp_cong_avoid()
440 static void bictcp_acked(struct sock *sk, u32 cnt, s32 rtt_us) in bictcp_acked() argument