Lines Matching full:nscopes
43 unsigned int inlined, nscopes;
94 function of which A->scopes[A->nscopes - 1] is a concrete instance.
97 unsigned int nscopes = a->nscopes + depth;
98 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]);
110 scopes[a->nscopes++] = die->die;
112 while (a->nscopes < nscopes);
114 return a->nscopes;
130 a->nscopes = depth + 1 - a->inlined;
131 a->scopes = malloc (a->nscopes * sizeof a->scopes[0]);
138 for (unsigned int i = 0; i < a->nscopes; ++i)
147 return a->nscopes;