HomeSort by relevance Sort by last modified time
    Searched refs:prev_free_ (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/space/
large_object_space.h 154 // Returns the previous free allocation header by using the prev_free_ member to figure out
157 return reinterpret_cast<AllocationHeader*>(reinterpret_cast<uintptr_t>(this) - prev_free_);
173 return prev_free_;
179 prev_free_ = prev_free;
203 size_t prev_free_; member in class:art::gc::space::FreeListSpace::AllocationHeader
large_object_space.cc 224 new_free_header->prev_free_ = new_free_size;
265 // Remove the newly allocated block from the header and update the prev_free_.
266 header->prev_free_ -= allocation_size;
267 if (header->prev_free_ > 0) {

Completed in 514 milliseconds