Searched defs:FreeListSpace (Results 1 - 1 of 1) sorted by relevance

/art/runtime/gc/space/
H A Dlarge_object_space.cc207 return AlignSize() * FreeListSpace::kAlignment;
211 DCHECK_ALIGNED(size, FreeListSpace::kAlignment);
212 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0U);
241 return GetPrevFree() * FreeListSpace::kAlignment;
245 DCHECK_ALIGNED(bytes, FreeListSpace::kAlignment);
246 prev_free_ = bytes / FreeListSpace::kAlignment;
262 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const {
268 AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) {
272 const AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) const {
276 inline bool FreeListSpace
294 FreeListSpace::FreeListSpace(const std::string& name, MemMap* mem_map, byte* begin, byte* end) function in class:art::gc::space::FreeListSpace
[all...]

Completed in 84 milliseconds