Lines Matching refs:newp
654 struct file_list *newp;
656 newp = (struct file_list *) xmalloc (sizeof (struct file_list));
657 newp->name = arg;
659 newp->next = NULL;
661 CSNGL_LIST_ADD_REAR (input_file_list, newp);
1187 struct pathelement *newp;
1192 newp = (struct pathelement *) obstack_alloc (&ld_state.smem, sizeof (*newp));
1193 newp->pname = str;
1194 newp->exist = 0;
1196 newp->next = NULL;
1199 CSNGL_LIST_ADD_REAR (*pathp, newp);
1218 struct pathelement *newp;
1232 newp = (struct pathelement *) obstack_alloc (&ld_state.smem,
1233 sizeof (*newp));
1234 newp->next = lastp->next;
1235 newp->exist = 0;
1236 lastp = lastp->next = newp;