Lines Matching refs:stackp
118 struct stack_block *stackp = &stackbase; variable
140 sp->prev = stackp; in stalloc()
143 stackp = sp; in stalloc()
171 mark->stackp = stackp; in setstackmark()
196 while (stackp != mark->stackp) { in rststackmark()
198 sp = stackp; in rststackmark()
199 stackp = sp->prev; in rststackmark()
225 if (stacknxt == stackp->space && stackp != &stackbase) { in growstackblock()
230 oldstackp = stackp; in growstackblock()
231 sp = stackp; in growstackblock()
232 stackp = sp->prev; in growstackblock()
235 sp->prev = stackp; in growstackblock()
236 stackp = sp; in growstackblock()
246 while (xmark != NULL && xmark->stackp == oldstackp) { in growstackblock()
247 xmark->stackp = stackp; in growstackblock()