Searched refs:freed_bytes (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Druntime_stats.h78 freed_bytes = 0;
99 uint64_t freed_bytes; variable
H A Druntime.cc1663 return stats->freed_bytes;
/art/runtime/gc/collector/
H A Dgarbage_collector.cc221 const uint64_t freed_bytes = GetTotalFreedBytes(); local
234 << " objects with total size " << PrettySize(freed_bytes) << "\n"
236 << PrettySize(freed_bytes / seconds) << "/s\n";
H A Dconcurrent_copying.cc1694 int64_t freed_bytes = cleared_bytes - to_bytes; local
1701 << " freed_bytes=" << freed_bytes << " freed_objects=" << freed_objects
1707 RecordFree(ObjectBytePair(freed_objects, freed_bytes));
/art/runtime/gc/allocator/
H A Drosalloc.cc1004 size_t freed_bytes = 0; local
1008 freed_bytes += FreeInternal(self, ptrs[i]);
1010 return freed_bytes;
1048 freed_bytes += FreePages(self, ptr, false);
1074 freed_bytes += FreePages(self, ptr, false);
1083 freed_bytes += run->AddToBulkFreeList(ptr);
1202 return freed_bytes;
/art/runtime/gc/
H A Dheap.cc1605 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { argument
1609 DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed()));
1610 // Note: This relies on 2s complement for handling negative freed_bytes.
1611 num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes));
1615 thread_stats->freed_bytes += freed_bytes;
1619 global_stats->freed_bytes += freed_bytes;
3623 const uint64_t freed_bytes = current_gc_iteration_.GetFreedBytes() + local
3626 // Bytes allocated will shrink by freed_bytes afte
[all...]
H A Dheap.h456 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);

Completed in 334 milliseconds