Lines Matching refs:stack_block
123 struct stack_block { struct
124 struct stack_block *prev; argument
127 #define SPACE(sp) ((char*)(sp) + ALIGN(sizeof(struct stack_block)))
129 static struct stack_block *stackp;
138 struct stack_block *sp; in stnewblock()
144 allocsize = ALIGN(sizeof(struct stack_block)) + ALIGN(nbytes); in stnewblock()
212 struct stack_block *sp; in popstackmark()
247 struct stack_block *sp; in growstackblock()
248 struct stack_block *oldstackp; in growstackblock()
253 INT_MAX / 2 - ALIGN(sizeof(struct stack_block))) in growstackblock()
256 min += ALIGN(sizeof(struct stack_block)); in growstackblock()
275 newlen -= ALIGN(sizeof(struct stack_block)); in growstackblock()