Home | History | Annotate | Download | only in libasm

Lines Matching refs:newp

44   AsmScn_t *newp;
65 newp = (AsmScn_t *) malloc (sizeof (AsmScn_t));
66 if (newp == NULL)
70 newp->ctx = runp->ctx;
73 newp->subsection_id = nr;
76 newp->type = runp->type;
79 newp->data.up = runp->subsection_id == 0 ? runp : runp->data.up;
82 newp->offset = 0;
84 newp->max_align = 1;
87 newp->content = NULL;
90 newp->pattern = asmscn->pattern;
93 newp->subnext = runp->subnext;
94 runp->subnext = newp;
96 return newp;