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.cc233 auto best_fit_iter = best_fit_allocs_.lower_bound(&temp_chunk); in AllocArena() local
234 if (UNLIKELY(best_fit_iter == best_fit_allocs_.end())) { in AllocArena()
236 best_fit_iter = best_fit_allocs_.lower_bound(&temp_chunk); in AllocArena()
237 CHECK(best_fit_iter != best_fit_allocs_.end()); in AllocArena()
239 auto free_chunks_iter = free_chunks_.find(*best_fit_iter); in AllocArena()
241 Chunk* chunk = *best_fit_iter; in AllocArena()
252 best_fit_allocs_.erase(best_fit_iter); in AllocArena()
262 auto next_best_fit_iter = best_fit_iter; in AllocArena()
266 auto best_fit_nh = best_fit_allocs_.extract(best_fit_iter); in AllocArena()