Searched refs:AllocationSize (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/space/
H A Dlarge_object_space.h85 size_t AllocationSize(const mirror::Object* obj);
111 size_t AllocationSize(const mirror::Object* obj) EXCLUSIVE_LOCKS_REQUIRED(lock_);
140 size_t AllocationSize() const { function in class:art::gc::space::FreeListSpace::AllocationHeader
151 return AllocationSize() == 0;
194 if (a->AllocationSize() < b->AllocationSize()) return true;
195 if (a->AllocationSize() > b->AllocationSize()) return false;
H A Dlarge_object_space.cc91 size_t LargeObjectMapSpace::AllocationSize(const mirror::Object* obj) { function in class:art::gc::space::LargeObjectMapSpace
154 size_t alloc_size = cur_header->AllocationSize();
193 size_t allocation_size = header->AllocationSize();
217 DCHECK(IsAligned<kAlignment>(next_next_header->AllocationSize()));
242 size_t FreeListSpace::AllocationSize(const mirror::Object* obj) { function in class:art::gc::space::FreeListSpace
246 return header->AllocationSize();
316 size_t alloc_size = cur_header->AllocationSize();
H A Dspace_test.cc120 size_t free3 = space->AllocationSize(ptr3);
130 size_t free1 = space->AllocationSize(ptr1);
155 free1 = space->AllocationSize(ptr1);
192 size_t free3 = space->AllocationSize(ptr3);
202 size_t free1 = space->AllocationSize(ptr1);
227 ASSERT_EQ(allocation_size, los->AllocationSize(obj));
281 EXPECT_EQ(allocation_size, space->AllocationSize(lots_of_objects[i]));
295 EXPECT_EQ(allocation_size, space->AllocationSize(lots_of_objects[i]));
363 size_t allocation_size = space->AllocationSize(object);
415 size_t allocation_size = space->AllocationSize(objec
[all...]
H A Ddlmalloc_space.cc79 virtual size_t AllocationSize(const mirror::Object* obj) { function in class:art::gc::space::ValgrindDlMallocSpace
80 size_t result = DlMallocSpace::AllocationSize(reinterpret_cast<const mirror::Object*>(
89 size_t allocation_size = DlMallocSpace::AllocationSize(
452 size_t DlMallocSpace::AllocationSize(const mirror::Object* obj) { function in class:art::gc::space::DlMallocSpace
H A Ddlmalloc_space.h60 virtual size_t AllocationSize(const mirror::Object* obj);
H A Dspace.h163 virtual size_t AllocationSize(const mirror::Object* obj) = 0;

Completed in 101 milliseconds