Home | History | Annotate | Download | only in libasm

Lines Matching defs:newp

43   AsmScn_t *newp;
64 newp = (AsmScn_t *) malloc (sizeof (AsmScn_t));
65 if (newp == NULL)
69 newp->ctx = runp->ctx;
72 newp->subsection_id = nr;
75 newp->type = runp->type;
78 newp->data.up = runp->subsection_id == 0 ? runp : runp->data.up;
81 newp->offset = 0;
83 newp->max_align = 1;
86 newp->content = NULL;
89 newp->pattern = asmscn->pattern;
92 newp->subnext = runp->subnext;
93 runp->subnext = newp;
95 return newp;