Lines Matching refs:cnt
51 u32 cnt; /* increase cwnd by 1 after ACKs */ member
62 ca->cnt = 0; in bictcp_reset()
97 ca->cnt = cwnd; in bictcp_update()
108 ca->cnt = cwnd / max_increment; in bictcp_update()
111 ca->cnt = (cwnd * smooth_part) / BICTCP_B; in bictcp_update()
114 ca->cnt = cwnd / dist; in bictcp_update()
119 ca->cnt = (cwnd * smooth_part) / BICTCP_B; in bictcp_update()
122 ca->cnt = (cwnd * (BICTCP_B-1)) in bictcp_update()
126 ca->cnt = cwnd / max_increment; in bictcp_update()
131 if (ca->cnt > 20) /* increase cwnd 5% per RTT */ in bictcp_update()
132 ca->cnt = 20; in bictcp_update()
135 ca->cnt = (ca->cnt << ACK_RATIO_SHIFT) / ca->delayed_ack; in bictcp_update()
136 if (ca->cnt == 0) /* cannot be zero */ in bictcp_update()
137 ca->cnt = 1; in bictcp_update()
154 tcp_cong_avoid_ai(tp, ca->cnt, acked); in bictcp_cong_avoid()