Searched refs:freed_bytes (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | runtime_stats.h | 78 freed_bytes = 0; in Clear() 99 uint64_t freed_bytes; member
|
D | runtime.cc | 1466 return stats->freed_bytes; in GetStat()
|
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 198 const uint64_t freed_bytes = GetTotalFreedBytes(); in DumpPerformanceInfo() local 211 << " objects with total size " << PrettySize(freed_bytes) << "\n" in DumpPerformanceInfo() 213 << PrettySize(freed_bytes / seconds) << "/s\n"; in DumpPerformanceInfo()
|
D | concurrent_copying.cc | 1321 int64_t freed_bytes = from_bytes - to_bytes; in ReclaimPhase() local 1328 << " freed_bytes=" << freed_bytes << " freed_objects=" << freed_objects in ReclaimPhase() 1334 RecordFree(ObjectBytePair(freed_objects, freed_bytes)); in ReclaimPhase()
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 1011 size_t freed_bytes = 0; in BulkFree() local 1015 freed_bytes += FreeInternal(self, ptrs[i]); in BulkFree() 1017 return freed_bytes; in BulkFree() 1055 freed_bytes += FreePages(self, ptr, false); in BulkFree() 1081 freed_bytes += FreePages(self, ptr, false); in BulkFree() 1090 freed_bytes += run->AddToBulkFreeList(ptr); in BulkFree() 1209 return freed_bytes; in BulkFree()
|
/art/runtime/gc/ |
D | heap.cc | 1633 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { in RecordFree() argument 1637 DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed())); in RecordFree() 1639 num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes)); in RecordFree() 1643 thread_stats->freed_bytes += freed_bytes; in RecordFree() 1647 global_stats->freed_bytes += freed_bytes; in RecordFree() 3597 const uint64_t freed_bytes = current_gc_iteration_.GetFreedBytes() + in GrowForUtilization() local 3602 CHECK_GE(bytes_allocated + freed_bytes, bytes_allocated_before_gc); in GrowForUtilization() 3603 const uint64_t bytes_allocated_during_gc = bytes_allocated + freed_bytes - in GrowForUtilization()
|
D | heap.h | 431 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);
|