Home | History | Annotate | Download | only in libcpp

Lines Matching defs:defs

115   cpp_hashnode **defs;
285 ss->defs[ss->n_defs] = hn;
323 ss->defs = XNEWVEC (cpp_hashnode *, ss->n_defs);
328 qsort (ss->defs, ss->n_defs, sizeof (cpp_hashnode *), &comp_hashnodes);
332 size_t len = NODE_LEN (ss->defs[i]);
333 memcpy (definedstrs, NODE_NAME (ss->defs[i]), len + 1);
346 free (ss->defs);
522 cpp_hashnode **defs;
542 nl->defs = XRESIZEVEC (cpp_hashnode *, nl->defs, nl->asize);
545 nl->defs[nl->n_defs] = hn;
669 nl.defs = XNEWVEC (cpp_hashnode *, nl.asize);
671 qsort (nl.defs, nl.n_defs, sizeof (cpp_hashnode *), &comp_hashnodes);
673 /* Loop through nl.defs and undeftab, both of which are sorted lists.
681 int cmp = ustrcmp (first, NODE_NAME (nl.defs[i]));
697 free(nl.defs);
698 nl.defs = NULL;
725 free (nl.defs);