Home
last modified time | relevance | path

Searched refs:freed_bytes (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Druntime_stats.h78 freed_bytes = 0; in Clear()
99 uint64_t freed_bytes; member
Druntime.cc1067 return stats->freed_bytes; in GetStat()
/art/runtime/gc/
Dheap.cc831 const uint64_t freed_bytes = collector->GetTotalFreedBytes(); in DumpGcPerformanceInfo() local
839 << " objects with total size " << PrettySize(freed_bytes) << "\n" in DumpGcPerformanceInfo()
841 << PrettySize(freed_bytes / seconds) << "/s\n"; in DumpGcPerformanceInfo()
1251 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { in RecordFree() argument
1255 DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed())); in RecordFree()
1257 num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes)); in RecordFree()
1261 thread_stats->freed_bytes += freed_bytes; in RecordFree()
1265 global_stats->freed_bytes += freed_bytes; in RecordFree()
Dheap.h371 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);
/art/runtime/gc/allocator/
Drosalloc.cc1147 size_t freed_bytes = 0; in BulkFree() local
1151 freed_bytes += FreeInternal(self, ptrs[i]); in BulkFree()
1153 return freed_bytes; in BulkFree()
1191 freed_bytes += FreePages(self, ptr, false); in BulkFree()
1217 freed_bytes += FreePages(self, ptr, false); in BulkFree()
1226 freed_bytes += run->MarkBulkFreeBitMap(ptr); in BulkFree()
1346 return freed_bytes; in BulkFree()