Lines Matching defs:nrp
409 struct ieee1394_reass_pkt *rp, *trp, *nrp = NULL;
453 for (rp = LIST_FIRST(&rq->rq_pkt); rp != NULL; rp = nrp) {
454 nrp = LIST_NEXT(rp, rp_next);
470 rp = nrp) {
471 nrp = LIST_NEXT(rp, rp_next);
492 nrp != NULL && nrp->rp_dgl == dgl &&
493 nrp->rp_off == rp->rp_off + rp->rp_len) {
494 LIST_REMOVE(nrp, rp_next);
495 m_cat(rp->rp_m, nrp->rp_m);
496 rp->rp_len += nrp->rp_len;
497 free(nrp, M_FTABLE);
498 nrp = LIST_NEXT(rp, rp_next);
514 nrp = rp;
517 if (nrp == NULL || nrp->rp_dgl != dgl) {
519 nrp = NULL;
561 } else if (nrp == NULL) {
566 LIST_INSERT_BEFORE(nrp, trp, rp_next);
594 struct ieee1394_reass_pkt *rp, *nrp;
600 for (rp = LIST_FIRST(&rq->rq_pkt); rp != NULL; rp = nrp) {
601 nrp = LIST_NEXT(rp, rp_next);