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

  /art/runtime/gc/space/
large_object_space.cc 259 return AlignSize() * FreeListSpace::kAlignment;
264 DCHECK_ALIGNED(size, FreeListSpace::kAlignment);
265 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0u);
304 return GetPrevFree() * FreeListSpace::kAlignment;
308 DCHECK_ALIGNED(bytes, FreeListSpace::kAlignment);
309 prev_free_ = bytes / FreeListSpace::kAlignment;
324 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const {
330 AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) {
334 const AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) const {
338 inline bool FreeListSpace::SortByPrevFree::operator()(const AllocationInfo* a
    [all...]
large_object_space.h 166 class FreeListSpace FINAL : public LargeObjectSpace {
170 virtual ~FreeListSpace();
171 static FreeListSpace* Create(const std::string& name, uint8_t* requested_begin, size_t capacity);
184 FreeListSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end);
large_object_space_test.cc 44 los = space::FreeListSpace::Create("large object space", nullptr, capacity);
159 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB);
  /art/runtime/gc/
heap.cc 488 large_object_space_ = space::FreeListSpace::Create("free list large object space", nullptr,
    [all...]

Completed in 66 milliseconds