Lines Matching defs:stack_block
29 struct stack_block {
30 struct stack_block *next;
39 #define SIZEOF_MEMBLOCK MEM_ALIGN(sizeof(struct stack_block))
52 struct stack_block *block[BLOCK_FRAME_COUNT];
78 static struct stack_block *current_block; /* block now used for allocation */
79 static struct stack_block *unused_block; /* largest unused block is kept here */
81 static struct stack_block *last_buffer_block;
91 struct stack_block block;
95 static struct stack_block *mem_block_alloc(size_t min_size);
98 unsigned char *data_stack_after_last_alloc(struct stack_block *block)
201 static void block_canary_check(struct stack_block *block)
212 static void free_blocks(struct stack_block *block)
214 struct stack_block *next;
240 struct stack_block *block;
340 static struct stack_block *mem_block_alloc(size_t min_size)
342 struct stack_block *block;
406 struct stack_block *block;