Lines Matching refs:acked
1362 u_int32_t fsize, acked; in tcp_bad_rexmt_restore_state() local
1364 acked = BYTES_ACKED(th, tp); in tcp_bad_rexmt_restore_state()
1377 tp->snd_cwnd = fsize + min(acked, tp->snd_cwnd); in tcp_bad_rexmt_restore_state()
2029 int todrop, acked = 0, ourfinisacked, needoutput = 0; in tcp_input() local
3248 acked = BYTES_ACKED(th, tp); in tcp_input()
3250 tcpstat.tcps_rcvackbyte += acked; in tcp_input()
3257 uint32_t pkts_acked = tcp_packets_this_ack(tp, acked); in tcp_input()
3261 if (acked == 0 && (to.to_flags & TOF_TS) != 0 && to.to_tsecr != 0 && in tcp_input()
3265 if (acked > 0 || newly_acked_time) { in tcp_input()
3299 sbdrop(&so->so_snd, acked); in tcp_input()
4975 if (acked == 0 && (to.to_flags & TOF_TS) != 0 && to.to_tsecr != 0 && in tcp_input()
5353 acked = BYTES_ACKED(th, tp); in tcp_input()
5355 tcpstat.tcps_rcvackbyte += acked; in tcp_input()
5401 if (acked == 0) { in tcp_input()
5443 acked = 0; in tcp_input()
5445 uint32_t pkts_acked = tcp_packets_this_ack(tp, acked); in tcp_input()
5457 if (acked == 0 && sack_bytes_acked == 0 && in tcp_input()
5466 if (acked > 0 || sack_bytes_acked > 0 || newly_acked_time) { in tcp_input()
5511 if (acked > so->so_snd.sb_cc) { in tcp_input()
5516 sbdrop(&so->so_snd, acked); in tcp_input()
5518 tp->snd_wnd -= acked; in tcp_input()