Home | History | Annotate | Download | only in libasm

Lines Matching defs:newp

31   AsmScn_t *newp;
52 newp = (AsmScn_t *) malloc (sizeof (AsmScn_t));
53 if (newp == NULL)
57 newp->ctx = runp->ctx;
60 newp->subsection_id = nr;
63 newp->type = runp->type;
66 newp->data.up = runp->subsection_id == 0 ? runp : runp->data.up;
69 newp->offset = 0;
71 newp->max_align = 1;
74 newp->content = NULL;
77 newp->pattern = asmscn->pattern;
80 newp->subnext = runp->subnext;
81 runp->subnext = newp;
83 return newp;