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);
1280 struct pathelement *newp;
1285 newp = (struct pathelement *) obstack_alloc (&ld_state.smem, sizeof (*newp));
1286 newp->pname = str;
1287 newp->exist = 0;
1289 newp->next = NULL;
1292 CSNGL_LIST_ADD_REAR (*pathp, newp);
1311 struct pathelement *newp;
1325 newp = (struct pathelement *) obstack_alloc (&ld_state.smem,
1326 sizeof (*newp));
1327 newp->next = lastp->next;
1328 newp->exist = 0;
1329 lastp = lastp->next = newp;