Lines Matching full:s1

155 	    s1 = DCCP_SKB_CB(skb)->dccpd_seq;  in __do_track_loss()  local
157 if (!dccp_loss_free(s0, s1, n1)) { /* gap between S0 and S1 */ in __do_track_loss()
166 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __one_after_loss() local
169 if (likely(dccp_delta_seqno(s1, s2) > 0)) { /* S1 < S2 */ in __one_after_loss()
175 /* S0 < S2 < S1 */ in __one_after_loss()
180 if (dccp_loss_free(s2, s1, n1)) { in __one_after_loss()
181 /* hole is filled: S0, S2, and S1 are consecutive */ in __one_after_loss()
185 /* gap between S2 and S1: just update loss_prev */ in __one_after_loss()
190 * Reorder history to insert S2 between S0 and S1 in __one_after_loss()
203 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __two_after_loss() local
215 if (dccp_delta_seqno(s1, s3) > 0) { /* S1 < S3 < S2 */ in __two_after_loss()
217 * Reorder history to insert S3 between S1 and S2 in __two_after_loss()
225 /* S0 < S3 < S1 */ in __two_after_loss()
230 if (dccp_loss_free(s3, s1, n1)) { in __two_after_loss()
231 /* hole between S0 and S1 filled by S3 */ in __two_after_loss()
234 if (dccp_loss_free(s1, s2, n2)) { in __two_after_loss()
235 /* entire hole filled by S0, S3, S1, S2 */ in __two_after_loss()
239 /* gap remains between S1 and S2 */ in __two_after_loss()
244 } else /* gap exists between S3 and S1, loss_count stays at 2 */ in __two_after_loss()
251 * The remaining case: S0 < S3 < S1 < S2; gap between S0 and S3 in __two_after_loss()
252 * Reorder history to insert S3 between S0 and S1. in __two_after_loss()
266 * At this stage we know already that there is a gap between S0 and S1 in __three_after_loss()
269 * check for other possible gaps between S1/S2 and between S2/S3. in __three_after_loss()
271 u64 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __three_after_loss() local
277 if (dccp_loss_free(s1, s2, n2)) { in __three_after_loss()
289 } else { /* gap between S1 and S2 */ in __three_after_loss()