Lines Matching defs:sndcnt
2621 * It computes the number of packets to send (sndcnt) based on packets newly
2646 int sndcnt = 0;
2656 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out;
2658 sndcnt = max_t(int, tp->prr_delivered - tp->prr_out,
2661 sndcnt++;
2662 sndcnt = min(delta, sndcnt);
2665 sndcnt = max(sndcnt, (tp->prr_out ? 0 : 1));
2666 tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + sndcnt);