Home | History | Annotate | Download | only in gc

Lines Matching defs:freed_bytes

831       const uint64_t freed_bytes = collector->GetTotalFreedBytes();
839 << " objects with total size " << PrettySize(freed_bytes) << "\n"
841 << PrettySize(freed_bytes / seconds) << "/s\n";
1251 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) {
1255 DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed()));
1256 // Note: This relies on 2s complement for handling negative freed_bytes.
1257 num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes));
1261 thread_stats->freed_bytes += freed_bytes;
1265 global_stats->freed_bytes += freed_bytes;