Lines Matching defs:new
104 * subsequent packets as belonging to a new loss interval. This
118 /* Determine if `new_loss' does begin a new loss interval [RFC 4342, 10.2] */
127 * tfrc_lh_interval_add - Insert new record into the Loss Interval database
133 * Updates I_mean and returns 1 if a new interval has in fact been added to @lh.
138 struct tfrc_loss_interval *cur = tfrc_lh_peek(lh), *new;
143 new = tfrc_lh_demand_next(lh);
144 if (unlikely(new == NULL)) {
149 new->li_seqno = tfrc_rx_hist_loss_prev(rh)->tfrchrx_seqno;
150 new->li_ccval = tfrc_rx_hist_loss_prev(rh)->tfrchrx_ccval;
151 new->li_is_closed = 0;
154 lh->i_mean = new->li_length = (*calc_first_li)(sk);
156 cur->li_length = dccp_delta_seqno(cur->li_seqno, new->li_seqno);
157 new->li_length = dccp_delta_seqno(new->li_seqno,