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

/art/runtime/
H A Druntime_stats.h78 freed_bytes = 0;
99 uint64_t freed_bytes; variable
/art/runtime/gc/collector/
H A Dgarbage_collector.cc198 const uint64_t freed_bytes = GetTotalFreedBytes(); local
211 << " objects with total size " << PrettySize(freed_bytes) << "\n"
213 << PrettySize(freed_bytes / seconds) << "/s\n";
H A Dconcurrent_copying.cc1318 int64_t freed_bytes = from_bytes - to_bytes; local
1325 << " freed_bytes=" << freed_bytes << " freed_objects=" << freed_objects
1331 RecordFree(ObjectBytePair(freed_objects, freed_bytes));
/art/runtime/gc/allocator/
H A Drosalloc.cc1011 size_t freed_bytes = 0; local
1015 freed_bytes += FreeInternal(self, ptrs[i]);
1017 return freed_bytes;
1055 freed_bytes += FreePages(self, ptr, false);
1081 freed_bytes += FreePages(self, ptr, false);
1090 freed_bytes += run->AddToBulkFreeList(ptr);
1209 return freed_bytes;
/art/runtime/gc/
H A Dheap.cc1633 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { argument
1637 DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed()));
1638 // Note: This relies on 2s complement for handling negative freed_bytes.
1639 num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes));
1643 thread_stats->freed_bytes += freed_bytes;
1647 global_stats->freed_bytes += freed_bytes;
3598 const uint64_t freed_bytes = current_gc_iteration_.GetFreedBytes() + local
3601 // Bytes allocated will shrink by freed_bytes afte
[all...]

Completed in 235 milliseconds