Home
last modified time | relevance | path

Searched refs:freed_bytes (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Druntime_stats.h78 freed_bytes = 0; in Clear()
99 uint64_t freed_bytes; member
Druntime.cc2399 return stats->freed_bytes; in GetStat()
/art/runtime/gc/collector/
Dgarbage_collector.cc182 int64_t freed_bytes = current_iteration->GetFreedBytes() + in Run() local
184 total_freed_bytes_ += freed_bytes; in Run()
186 freed_bytes_histogram_.AddValue(std::max<int64_t>(freed_bytes / KB, 0)); in Run()
341 const uint64_t freed_bytes = GetTotalFreedBytes(); in DumpPerformanceInfo() local
376 << " objects with total size " << PrettySize(freed_bytes) << "\n" in DumpPerformanceInfo()
378 << PrettySize(freed_bytes / seconds) << "/s" in DumpPerformanceInfo()
380 << static_cast<uint64_t>(freed_bytes / cpu_seconds) << "/s / " in DumpPerformanceInfo()
381 << PrettySize(freed_bytes / cpu_seconds) << "/s\n" in DumpPerformanceInfo()
Dmark_compact.cc2813 int32_t freed_bytes = black_objs_slide_diff_; in CompactionPause() local
2814 bump_pointer_space_->RecordFree(freed_objects_, freed_bytes); in CompactionPause()
2815 RecordFree(ObjectBytePair(freed_objects_, freed_bytes)); in CompactionPause()
3512 int32_t freed_bytes = black_objs_slide_diff_; in CompactionPhase() local
3513 bump_pointer_space_->RecordFree(freed_objects_, freed_bytes); in CompactionPhase()
3514 RecordFree(ObjectBytePair(freed_objects_, freed_bytes)); in CompactionPhase()
Dconcurrent_copying.cc2815 int64_t freed_bytes = (int64_t)cleared_bytes - (int64_t)to_bytes; in ReclaimPhase() local
2823 << " freed_bytes=" << freed_bytes << " freed_objects=" << freed_objects in ReclaimPhase()
2830 RecordFree(ObjectBytePair(freed_objects, freed_bytes)); in ReclaimPhase()
2837 float reclaimed_bytes_ratio = static_cast<float>(freed_bytes) / num_bytes_allocated_before_gc_; in ReclaimPhase()
/art/test/099-vmdebug/src/
DMain.java272 int freed_bytes = VMDebug.getAllocCount(KIND_FREED_BYTES); in testGetAllocCount() local
276 checkBiggerThanZero(freed_bytes); in testGetAllocCount()
/art/runtime/gc/allocator/
Drosalloc.cc1007 size_t freed_bytes = 0; in BulkFree() local
1011 freed_bytes += FreeInternal(self, ptrs[i]); in BulkFree()
1013 return freed_bytes; in BulkFree()
1051 freed_bytes += FreePages(self, ptr, false); in BulkFree()
1077 freed_bytes += FreePages(self, ptr, false); in BulkFree()
1086 freed_bytes += run->AddToBulkFreeList(ptr); in BulkFree()
1205 return freed_bytes; in BulkFree()
/art/runtime/gc/
Dheap.cc1832 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { in RecordFree() argument
1836 RACING_DCHECK_LE(freed_bytes, in RecordFree()
1839 num_bytes_allocated_.fetch_sub(static_cast<ssize_t>(freed_bytes), std::memory_order_relaxed); in RecordFree()
1843 thread_stats->freed_bytes += freed_bytes; in RecordFree()
1847 global_stats->freed_bytes += freed_bytes; in RecordFree()
3767 const uint64_t freed_bytes = current_gc_iteration_.GetFreedBytes() + in GrowForUtilization() local
3772 num_bytes_alive_after_gc_ = UnsignedDifference(bytes_allocated_before_gc, freed_bytes); in GrowForUtilization()
3777 UnsignedDifference(bytes_allocated + freed_bytes, bytes_allocated_before_gc); in GrowForUtilization()
Dheap.h532 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);