Home | History | Annotate | Download | only in libyasm

Lines Matching refs:np

499     } *np;
503 np = yasm_xmalloc(sizeof(struct nodeent));
504 np->node = x->left;
505 SLIST_INSERT_HEAD(&stuffToFree, np, link);
508 np = yasm_xmalloc(sizeof(struct nodeent));
509 np->node = x->right;
510 SLIST_INSERT_HEAD(&stuffToFree, np, link);
514 np = SLIST_FIRST(&stuffToFree);
515 x = np->node;
517 yasm_xfree(np);
520 np
521 np->node = x->left;
522 SLIST_INSERT_HEAD(&stuffToFree, np, link);
525 np = yasm_xmalloc(sizeof(struct nodeent));
526 np->node = x->right;
527 SLIST_INSERT_HEAD(&stuffToFree, np, link);