Lines Matching refs:cnt
50 u32 cnt; /* increase cwnd by 1 after ACKs */ member
61 ca->cnt = 0; in bictcp_reset()
96 ca->cnt = cwnd; in bictcp_update()
107 ca->cnt = cwnd / max_increment; in bictcp_update()
110 ca->cnt = (cwnd * smooth_part) / BICTCP_B; in bictcp_update()
113 ca->cnt = cwnd / dist; in bictcp_update()
118 ca->cnt = (cwnd * smooth_part) / BICTCP_B; in bictcp_update()
121 ca->cnt = (cwnd * (BICTCP_B-1)) in bictcp_update()
125 ca->cnt = cwnd / max_increment; in bictcp_update()
130 if (ca->cnt > 20) /* increase cwnd 5% per RTT */ in bictcp_update()
131 ca->cnt = 20; in bictcp_update()
134 ca->cnt = (ca->cnt << ACK_RATIO_SHIFT) / ca->delayed_ack; in bictcp_update()
135 if (ca->cnt == 0) /* cannot be zero */ in bictcp_update()
136 ca->cnt = 1; in bictcp_update()
151 tcp_cong_avoid_ai(tp, ca->cnt, 1); in bictcp_cong_avoid()