Home | History | Annotate | Download | only in coregrind

Lines Matching refs:stackTop

122    Int         stackTop;               // Iterator stack pointer, one past end
249 t->stackTop = 0;
255 vg_assert(t->stackTop < STACK_MAX);
257 t->nodeStack[t->stackTop] = n;
258 t-> numStack[t->stackTop] = i;
259 t->stackTop++;
265 vg_assert(t->stackTop <= STACK_MAX);
267 if (t->stackTop > 0) {
268 t->stackTop--;
269 *n = t->nodeStack[t->stackTop];
270 *i = t-> numStack[t->stackTop];
272 t->nodeStack[t->stackTop] = NULL;
273 t-> numStack[t->stackTop] = 0;
485 t->stackTop = 0; // So the iterator can't get out of sync
702 t->stackTop = 0; // So the iterator can't get out of sync