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

/art/compiler/utils/
H A Darena_bit_vector.cc35 virtual void Free(void*) {} // Nop. function in class:art::FINAL
H A Dswap_space.cc145 LOG(ERROR) << "Free list:";
163 void SwapSpace::Free(void* ptrV, size_t size) { function in class:art::SwapSpace
/art/runtime/base/
H A Dallocator.cc37 void Free(void* p) { function in class:art::FINAL
58 void Free(void* p) { function in class:art::FINAL
/art/runtime/gc/space/
H A Dvalgrind_malloc_space-inl.h197 kUseObjSizeForUsable>::Free( function in class:art::gc::space::ValgrindMallocSpace
214 return S::Free(self, reinterpret_cast<mirror::Object*>(obj_with_rdz));
228 freed += Free(self, ptrs[i]);
H A Dzygote_space.cc90 size_t ZygoteSpace::Free(Thread*, mirror::Object*) { function in class:art::gc::space::ZygoteSpace
H A Ddlmalloc_space.cc165 size_t DlMallocSpace::Free(Thread* self, mirror::Object* ptr) { function in class:art::gc::space::DlMallocSpace
169 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
H A Drosalloc_space.cc194 size_t RosAllocSpace::Free(Thread* self, mirror::Object* ptr) { function in class:art::gc::space::RosAllocSpace
197 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
203 return rosalloc_->Free(self, ptr);
H A Dlarge_object_space.cc74 size_t Free(Thread* self, mirror::Object* obj) OVERRIDE {
77 return LargeObjectMapSpace::Free(self, object_with_rdz);
186 size_t LargeObjectMapSpace::Free(Thread* self, mirror::Object* ptr) { function in class:art::gc::space::LargeObjectMapSpace
221 total += Free(self, ptrs[i]);
404 size_t FreeListSpace::Free(Thread* self, mirror::Object* obj) { function in class:art::gc::space::FreeListSpace
544 os << "Free block at address: " << reinterpret_cast<const void*>(address)
553 os << "Free block at address: " << reinterpret_cast<const void*>(free_end_start)
/art/runtime/gc/allocator/
H A Drosalloc.cc539 size_t RosAlloc::Free(Thread* self, void* ptr) { function in class:art::gc::allocator::RosAlloc
799 // Free the slot in the run.
803 // It has just become completely free. Free the pages of this run.
934 // Free slots in the alloc bit map based on the thread local free bit map.
974 // Free slots in the alloc bit map based on the bulk free bit map.
1158 // Used only to test Free() as GC uses only BulkFree().
1281 // It has just become completely free. Free the pages of the
2153 // Free page runs can start with a released page if we coalesced a released page free

Completed in 170 milliseconds