Home | History | Annotate | Download | only in src

Lines Matching defs:newp

718 	struct file_list *newp;
720 newp = (struct file_list *) xmalloc (sizeof (struct file_list));
721 newp->name = arg;
723 newp->next = NULL;
725 CSNGL_LIST_ADD_REAR (input_file_list, newp);
1269 struct pathelement *newp;
1274 newp = (struct pathelement *) obstack_alloc (&ld_state.smem, sizeof (*newp));
1275 newp->pname = str;
1276 newp->exist = 0;
1278 newp->next = NULL;
1281 CSNGL_LIST_ADD_REAR (*pathp, newp);
1300 struct pathelement *newp;
1314 newp = (struct pathelement *) obstack_alloc (&ld_state.smem,
1315 sizeof (*newp));
1316 newp->next = lastp->next;
1317 newp->exist = 0;
1318 lastp = lastp->next = newp;