Home | History | Annotate | Download | only in libdw

Lines Matching defs:nscopes

64   unsigned int inlined, nscopes;
115 function of which A->scopes[A->nscopes - 1] is a concrete instance.
118 unsigned int nscopes = a->nscopes + depth;
119 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]);
131 scopes[a->nscopes++] = die->die;
133 while (a->nscopes < nscopes);
135 return a->nscopes;
151 a->nscopes = depth + 1 - a->inlined;
152 a->scopes = malloc (a->nscopes * sizeof a->scopes[0]);
159 for (unsigned int i = 0; i < a->nscopes; ++i)
168 return a->nscopes;