Searched refs:stack_used (Results 1 – 1 of 1) sorted by relevance
125 size_t stack_used = sizeof (bool) * db->head->module; in gc() local126 if (__glibc_unlikely (stack_used > MAX_STACK_USE)) in gc()127 stack_used = 0; in gc()130 if (__glibc_likely (stack_used + memory_needed <= MAX_STACK_USE)) in gc()132 mark = (BITMAP_T *) alloca_account (memory_needed, stack_used); in gc()148 if (__glibc_likely (stack_used + memory_needed <= MAX_STACK_USE)) in gc()150 he = alloca_account (memory_needed, stack_used); in gc()340 if (__builtin_expect (stack_used + sizeof (*new_move) <= MAX_STACK_USE, in gc()342 new_move = alloca_account (sizeof (*new_move), stack_used); in gc()
Completed in 8 milliseconds