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

/art/runtime/gc/space/
H A Dmemory_tool_malloc_space-inl.h225 size_t freed = 0; local
227 freed += Free(self, ptrs[i]);
230 return freed;
H A Dspace.h229 // Returns how many bytes were freed.
232 // Returns how many bytes were freed.
255 collector::ObjectBytePair freed; member in struct:art::gc::space::AllocSpace::SweepCallbackContext
/art/runtime/gc/collector/
H A Dgarbage_collector.cc90 // Update cumulative statistics with how many bytes the GC iteration freed.
175 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { argument
176 GetCurrentIteration()->freed_.Add(freed);
177 heap_->RecordFree(freed.objects, freed.bytes);
179 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) { argument
180 GetCurrentIteration()->freed_los_.Add(freed);
181 heap_->RecordFree(freed.objects, freed.bytes);
210 << GetName() << " freed
[all...]
H A Dgarbage_collector.h53 // Number of objects which were freed.
91 void SetFreedRevoke(uint64_t freed) { argument
92 freed_bytes_revoke_ = freed;
181 void RecordFree(const ObjectBytePair& freed);
183 void RecordFreeLOS(const ObjectBytePair& freed);
H A Dmark_sweep.cc1190 ObjectBytePair freed; local
1234 freed.objects += chunk_free_pos;
1235 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1246 freed.objects += chunk_free_pos;
1247 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1276 RecordFree(freed);

Completed in 81 milliseconds