Lines Matching refs:nwp
513 struct whyle *nwp; in doforeach() local
540 nwp = xcalloc(1, sizeof *nwp); in doforeach()
541 nwp->w_fe = nwp->w_fe0 = v; in doforeach()
542 btell(&nwp->w_start); in doforeach()
543 nwp->w_fename = Strsave(cp); in doforeach()
544 nwp->w_next = whyles; in doforeach()
545 nwp->w_end.type = TCSH_F_SEEK; in doforeach()
546 whyles = nwp; in doforeach()
581 struct whyle *nwp = xcalloc(1, sizeof(*nwp)); in dowhile() local
583 nwp->w_start = lineloc; in dowhile()
584 nwp->w_end.type = TCSH_F_SEEK; in dowhile()
585 nwp->w_end.f_seek = 0; in dowhile()
586 nwp->w_end.a_seek = 0; in dowhile()
587 nwp->w_next = whyles; in dowhile()
588 whyles = nwp; in dowhile()
1133 struct whyle *nwp; in wfree() local
1135 nwp = NULL; /* sun lint is dumb! */ in wfree()
1149 for (; whyles; whyles = nwp) { in wfree()
1151 nwp = wp->w_next; in wfree()