Home | History | Annotate | Download | only in coregrind

Lines Matching refs:stackTop

125    Int         stackTop;               // Iterator stack pointer, one past end
252 t->stackTop = 0;
258 vg_assert(t->stackTop < STACK_MAX);
260 t->nodeStack[t->stackTop] = n;
261 t-> numStack[t->stackTop] = i;
262 t->stackTop++;
268 vg_assert(t->stackTop <= STACK_MAX);
270 if (t->stackTop > 0) {
271 t->stackTop--;
272 *n = t->nodeStack[t->stackTop];
273 *i = t-> numStack[t->stackTop];
275 t->nodeStack[t->stackTop] = NULL;
276 t-> numStack[t->stackTop] = 0;
562 t->stackTop = 0; // So the iterator can't get out of sync
779 t->stackTop = 0; // So the iterator can't get out of sync