Home | History | Annotate | Download | only in src

Lines Matching defs:newp

732 	struct file_list *newp;
734 newp = (struct file_list *) xmalloc (sizeof (struct file_list));
735 newp->name = arg;
737 newp->next = NULL;
739 CSNGL_LIST_ADD_REAR (input_file_list, newp);
1281 struct pathelement *newp;
1286 newp = (struct pathelement *) obstack_alloc (&ld_state.smem, sizeof (*newp));
1287 newp->pname = str;
1288 newp->exist = 0;
1290 newp->next = NULL;
1293 CSNGL_LIST_ADD_REAR (*pathp, newp);
1312 struct pathelement *newp;
1326 newp = (struct pathelement *) obstack_alloc (&ld_state.smem,
1327 sizeof (*newp));
1328 newp->next = lastp->next;
1329 newp->exist = 0;
1330 lastp = lastp->next = newp;