Home
last modified time | relevance | path

Searched refs:best_fit_iter (Results 1 – 1 of 1) sorted by relevance

/art/runtime/base/
Dgc_visited_arena_pool.cc155 auto best_fit_iter = best_fit_allocs_.lower_bound(&temp_chunk); in AllocArena() local
156 if (UNLIKELY(best_fit_iter == best_fit_allocs_.end())) { in AllocArena()
158 best_fit_iter = best_fit_allocs_.lower_bound(&temp_chunk); in AllocArena()
159 CHECK(best_fit_iter != best_fit_allocs_.end()); in AllocArena()
161 auto free_chunks_iter = free_chunks_.find(*best_fit_iter); in AllocArena()
163 Chunk* chunk = *best_fit_iter; in AllocArena()
173 best_fit_allocs_.erase(best_fit_iter); in AllocArena()
182 auto next_best_fit_iter = best_fit_iter; in AllocArena()
186 auto best_fit_nh = best_fit_allocs_.extract(best_fit_iter); in AllocArena()