Searched refs:stack_block (Results 1 – 3 of 3) sorted by relevance
123 struct stack_block { struct124 struct stack_block *prev; argument127 #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()[all …]
38 struct stack_block *stackp;
75 kmp_stack_block_t *stack_block = (kmp_stack_block_t *)(stack_top); in __kmp_trace_task_stack() local77 stack_block = stack_block->sb_prev; in __kmp_trace_task_stack()78 stack_top = &stack_block->sb_block[TASK_STACK_BLOCK_SIZE]; in __kmp_trace_task_stack()132 kmp_stack_block_t *stack_block = &task_stack->ts_first_block; in __kmp_free_task_stack() local136 while (stack_block != NULL) { in __kmp_free_task_stack()137 kmp_stack_block_t *next_block = (stack_block) ? stack_block->sb_next : NULL; in __kmp_free_task_stack()139 stack_block->sb_next = NULL; in __kmp_free_task_stack()140 stack_block->sb_prev = NULL; in __kmp_free_task_stack()141 if (stack_block != &task_stack->ts_first_block) { in __kmp_free_task_stack()143 stack_block); // free the block, if not the first in __kmp_free_task_stack()[all …]