Lines Matching refs:sp
123 struct stack_block *sp; in stalloc() local
132 sp = ckmalloc(len); in stalloc()
133 sp->prev = stackp; in stalloc()
134 stacknxt = sp->space; in stalloc()
137 stackp = sp; in stalloc()
179 struct stack_block *sp; in popstackmark() local
183 sp = stackp; in popstackmark()
184 stackp = sp->prev; in popstackmark()
185 ckfree(sp); in popstackmark()
216 struct stack_block *sp; in growstackblock() local
221 sp = stackp; in growstackblock()
222 prevstackp = sp->prev; in growstackblock()
224 sp = ckrealloc((pointer)sp, grosslen); in growstackblock()
225 sp->prev = prevstackp; in growstackblock()
226 stackp = sp; in growstackblock()
227 stacknxt = sp->space; in growstackblock()
229 sstrend = sp->space + newlen; in growstackblock()