Home | History | Annotate | Download | only in libdw

Lines Matching defs:newp

178       struct loc_s *newp = libdw_alloc (attr->cu->dbg,
181 newp->addr = attr->valp;
182 newp->loc = result;
183 newp->nloc = 1;
185 found = tsearch (newp, &attr->cu->locs, loc_compare);
566 struct loc_s *newp;
568 newp = libdw_alloc (dbg, struct loc_s, sizeof (struct loc_s), 1);
571 newp = malloc (sizeof *newp);
572 if (newp == NULL)
579 newp->addr = block->data;
580 newp->loc = result;
581 newp->nloc = *listlen;
582 (void) tsearch (newp, cache, loc_compare);