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

/art/runtime/
H A Druntime_stats.h78 freed_bytes = 0;
99 uint64_t freed_bytes; variable
/art/runtime/gc/allocator/
H A Drosalloc.cc1147 size_t freed_bytes = 0; local
1151 freed_bytes += FreeInternal(self, ptrs[i]);
1153 return freed_bytes;
1191 freed_bytes += FreePages(self, ptr, false);
1217 freed_bytes += FreePages(self, ptr, false);
1226 freed_bytes += run->MarkBulkFreeBitMap(ptr);
1346 return freed_bytes;
/art/runtime/gc/
H A Dheap.cc811 const uint64_t freed_bytes = collector->GetTotalFreedBytes(); local
819 << " objects with total size " << PrettySize(freed_bytes) << "\n"
821 << PrettySize(freed_bytes / seconds) << "/s\n";
1199 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { argument
1203 DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed()));
1204 // Note: This relies on 2s complement for handling negative freed_bytes.
1205 num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes));
1209 thread_stats->freed_bytes += freed_bytes;
1213 global_stats->freed_bytes
[all...]

Completed in 244 milliseconds