Home
last modified time | relevance | path

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

/art/runtime/jni/
Dlocal_reference_table.cc52 : free_lists_(num_lrt_slots_, nullptr), in SmallLrtAllocator()
70 while (fill_from != num_lrt_slots_ && free_lists_[fill_from] == nullptr) { in Allocate()
76 result = free_lists_[fill_from]; in Allocate()
77 free_lists_[fill_from] = *reinterpret_cast<void**>(result); in Allocate()
91 DCHECK(free_lists_[fill_from] == nullptr); in Allocate()
93 free_lists_[fill_from] = mid; in Allocate()
107 void** before = &free_lists_[index]; in Deallocate()
129 DCHECK(free_lists_[num_lrt_slots_ - 1u] != nullptr); in Deallocate()
137 *reinterpret_cast<void**>(unneeded) = free_lists_[index]; in Deallocate()
138 free_lists_[index] = unneeded; in Deallocate()
Dlocal_reference_table.h236 dchecked_vector<void*> free_lists_; variable