Lines Matching refs:newp
231 struct loc_s *newp = libdw_alloc (attr->cu->dbg,
234 newp->addr = attr->valp;
235 newp->loc = result;
236 newp->nloc = 1;
238 found = tsearch (newp, &attr->cu->locs, loc_compare);
641 struct loc_s *newp;
643 newp = libdw_alloc (dbg, struct loc_s, sizeof (struct loc_s), 1);
646 newp = malloc (sizeof *newp);
647 if (newp == NULL)
654 newp->addr = block->data;
655 newp->loc = result;
656 newp->nloc = *listlen;
657 (void) tsearch (newp, cache, loc_compare);