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 267 return AlignSize() * FreeListSpace::kAlignment;
272 DCHECK_ALIGNED(size, FreeListSpace::kAlignment);
273 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0u);
312 return GetPrevFree() * FreeListSpace::kAlignment;
316 DCHECK_ALIGNED(bytes, FreeListSpace::kAlignment);
317 prev_free_ = bytes / FreeListSpace::kAlignment;
332 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const {
338 AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) {
342 const AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) const {
346 inline bool FreeListSpace::SortByPrevFree::operator()(const AllocationInfo* a
    [all...]
large_object_space.h 183 class FreeListSpace final : public LargeObjectSpace {
187 virtual ~FreeListSpace();
188 static FreeListSpace* Create(const std::string& name, size_t capacity);
201 FreeListSpace(const std::string& name, MemMap&& mem_map, uint8_t* begin, uint8_t* end);
large_object_space_test.cc 45 los = space::FreeListSpace::Create("large object space", capacity);
160 los = space::FreeListSpace::Create("large object space", 128 * MB);
  /art/runtime/gc/
heap.cc 561 large_object_space_ = space::FreeListSpace::Create("free list large object space", capacity_);
    [all...]

Completed in 316 milliseconds