Lines Matching refs:np
596 struct pbuf *np, *q;
599 np = pbuf_alloc(PBUF_RAW, n0->len + cs->cs_hlen, PBUF_POOL);
600 if(!np) {
605 if(pbuf_header(np, -cs->cs_hlen)) {
612 for(q = np; q != NULL; q = q->next) {
618 pbuf_chain(np, n0->next);
622 n0 = np;
626 struct pbuf *np;
629 np = pbuf_alloc(PBUF_RAW, cs->cs_hlen, PBUF_POOL);
630 if(!np) {
634 pbuf_cat(np, n0);
635 n0 = np;