Searched refs:gc_last_free_atb_index (Results 1 – 2 of 2) sorted by relevance
150 MP_STATE_MEM(gc_last_free_atb_index) = 0; in gc_init()362 MP_STATE_MEM(gc_last_free_atb_index) = 0; in gc_collect_end()475 … for (i = MP_STATE_MEM(gc_last_free_atb_index); i < MP_STATE_MEM(gc_alloc_table_byte_len); i++) { in gc_alloc()508 MP_STATE_MEM(gc_last_free_atb_index) = (i + 1) / BLOCKS_PER_ATB; in gc_alloc()598 if (block / BLOCKS_PER_ATB < MP_STATE_MEM(gc_last_free_atb_index)) { in gc_free()599 MP_STATE_MEM(gc_last_free_atb_index) = block / BLOCKS_PER_ATB; in gc_free()734 if ((block + new_blocks) / BLOCKS_PER_ATB < MP_STATE_MEM(gc_last_free_atb_index)) { in gc_realloc()735 MP_STATE_MEM(gc_last_free_atb_index) = (block + new_blocks) / BLOCKS_PER_ATB; in gc_realloc()
96 size_t gc_last_free_atb_index; member
Completed in 5 milliseconds