Searched refs:freed_bytes (Results 1 – 5 of 5) sorted by relevance
78 freed_bytes = 0; in Clear()99 uint64_t freed_bytes; member
1067 return stats->freed_bytes; in GetStat()
831 const uint64_t freed_bytes = collector->GetTotalFreedBytes(); in DumpGcPerformanceInfo() local839 << " 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() argument1255 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()
371 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);
1147 size_t freed_bytes = 0; in BulkFree() local1151 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()