Lines Matching defs:temp

337 					tcp_seq temp = start;
339 head_blk.start = temp;
342 tcp_seq temp = end;
344 head_blk.end = temp;
561 struct sackhole *cur, *temp;
678 if (((temp = TAILQ_LAST(&tp->snd_holes, sackhole_head)) != NULL) &&
679 SEQ_LEQ(tp->snd_fack,temp->end)) {
680 tp->sackhint.hole_bytes -= temp->end - temp->start;
681 temp->start = SEQ_MAX(tp->snd_fack, SEQ_MAX(tp->snd_una, th_ack));
682 temp->end = sblkp->start;
683 temp->rxmit = temp->start;
685 tp->sackhint.hole_bytes += temp->end - temp->start;
698 temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL);
699 if (temp != NULL) {
701 tp->sackhint.hole_bytes += temp->end - temp->start;
793 temp = cur;
795 tp->sackhint.hole_bytes -= temp->end - temp->start;
796 tcp_sackhole_remove(tp, temp);
825 temp = tcp_sackhole_insert(tp, sblkp->end,
828 if (temp != NULL) {
829 if (SEQ_GT(cur->rxmit, temp->rxmit)) {
830 temp->rxmit = cur->rxmit;
832 (SEQ_MIN(temp->rxmit,
833 temp->end) - temp->start);
836 loss_thresh += loss_hiack - temp->end;
837 loss_hiack = temp->start;
841 notlost_bytes += temp->end - temp->start;
956 struct sackhole *temp;
1016 if ((temp = tcp_sackhole_insert(tp, SEQ_MAX(th->th_ack,
1019 temp->end - temp->start;
1137 struct sackhole *temp;
1141 ((temp = TAILQ_FIRST(&tp->snd_holes)) != NULL) &&
1142 SEQ_GEQ(temp->rxmit, temp->end) &&
1143 SEQ_GEQ(tp->snd_fack, temp->rxmit)) {
1150 tp->sackhint.nexthole = temp;
1151 TAILQ_FOREACH(temp, &tp->snd_holes, scblink) {
1152 if (SEQ_GEQ(tp->snd_fack, temp->rxmit) &&
1153 SEQ_GEQ(temp->rxmit, temp->end))
1154 temp->rxmit = temp->start;