Lines Matching refs:seq_temp
1453 long seq_temp = 0; in tfrc_recv_detectLoss() local
1479 seq_temp = ((long) (elm->seq)) - ((long) elm2->seq); in tfrc_recv_detectLoss()
1481 if (seq_temp < 0) in tfrc_recv_detectLoss()
1482 seq_temp = seq_temp + DCCP_SEQ_NUM_LIMIT; in tfrc_recv_detectLoss()
1484 if (seq_temp != 1) { in tfrc_recv_detectLoss()
1487 seq_temp = seq_temp - 1; in tfrc_recv_detectLoss()
1488 …if (seq_temp % DCCP_NDP_LIMIT != ((int) elm->ndp - (int) elm2->ndp + DCCP_NDP_LIMIT) % DCCP_NDP_LI… in tfrc_recv_detectLoss()
1514 long seq_temp = 0; in tfrc_recv_updateLI() local
1561 seq_temp = seq_loss - ((long) ((TAILQ_FIRST(&(cb->li_hist)))->seq)); in tfrc_recv_updateLI()
1562 if (seq_temp < 0) in tfrc_recv_updateLI()
1563 seq_temp = seq_temp + DCCP_SEQ_NUM_LIMIT; in tfrc_recv_updateLI()
1565 (TAILQ_FIRST(&(cb->li_hist)))->interval = seq_temp; in tfrc_recv_updateLI()
1567 …(LOG_INFO, "TFRC - New loss event detected!, interval %i (tfrc_recv_updateLI)\n", (int) seq_temp)); in tfrc_recv_updateLI()
1587 seq_temp = ((long) (elm->seq)) - in tfrc_recv_updateLI()
1589 if (seq_temp < 0) in tfrc_recv_updateLI()
1590 seq_temp = seq_temp + DCCP_SEQ_NUM_LIMIT; in tfrc_recv_updateLI()
1592 (TAILQ_FIRST(&(cb->li_hist)))->interval = seq_temp; in tfrc_recv_updateLI()