Home | History | Annotate | Download | only in libdw

Lines Matching refs:newp

194       struct loc_s *newp = libdw_alloc (attr->cu->dbg,
197 newp->addr = attr->valp;
198 newp->loc = result;
199 newp->nloc = 1;
201 found = tsearch (newp, &attr->cu->locs, loc_compare);
507 struct loc_s *newp;
509 newp = libdw_alloc (dbg, struct loc_s, sizeof (struct loc_s), 1);
512 newp = malloc (sizeof *newp);
513 if (newp == NULL)
520 newp->addr = block->data;
521 newp->loc = result;
522 newp->nloc = *listlen;
523 (void) tsearch (newp, cache, loc_compare);