Lines Matching refs:stackp
116 struct stack_block *stackp = &stackbase; variable
138 sp->prev = stackp; in stalloc()
141 stackp = sp; in stalloc()
167 mark->stackp = stackp; in setstackmark()
182 while (stackp != mark->stackp) { in popstackmark()
183 sp = stackp; in popstackmark()
184 stackp = sp->prev; in popstackmark()
208 if (stacknxt == stackp->space && stackp != &stackbase) { in growstackblock()
214 oldstackp = stackp; in growstackblock()
215 sp = stackp; in growstackblock()
216 stackp = sp->prev; in growstackblock()
219 sp->prev = stackp; in growstackblock()
220 stackp = sp; in growstackblock()
229 while (xmark != NULL && xmark->stackp == oldstackp) { in growstackblock()
230 xmark->stackp = stackp; in growstackblock()