Lines Matching refs:bytes_allocated
1162 uint64_t bytes_allocated = GetBytesAllocated(); in CalculateGcWeightedAllocatedBytes() local
1164 return weight * bytes_allocated; in CalculateGcWeightedAllocatedBytes()
1800 size_t* bytes_allocated, in AllocateInternalWithGc() argument
1842 mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated, in AllocateInternalWithGc()
1873 alloc_size, bytes_allocated, in AllocateInternalWithGc()
1899 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated, in AllocateInternalWithGc()
1923 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated, in AllocateInternalWithGc()
2248 size_t bytes_allocated, unused_bytes_tl_bulk_allocated; in MarkNonForwardedObject() local
2250 self_, alloc_size, &bytes_allocated, nullptr, &unused_bytes_tl_bulk_allocated); in MarkNonForwardedObject()
3549 const size_t bytes_allocated = GetBytesAllocated(); in GrowForUtilization() local
3551 TraceHeapSize(bytes_allocated); in GrowForUtilization()
3559 uint64_t delta = bytes_allocated * (1.0 / GetTargetHeapUtilization() - 1.0); in GrowForUtilization()
3560 DCHECK_LE(delta, std::numeric_limits<size_t>::max()) << "bytes_allocated=" << bytes_allocated in GrowForUtilization()
3564 target_size = bytes_allocated + static_cast<uint64_t>(grow_bytes * multiplier); in GrowForUtilization()
3588 bytes_allocated <= (IsGcConcurrent() ? concurrent_start_bytes_ : target_footprint)) { in GrowForUtilization()
3595 if (bytes_allocated + adjusted_max_free < target_footprint) { in GrowForUtilization()
3596 target_size = bytes_allocated + adjusted_max_free; in GrowForUtilization()
3599 target_size = std::max(bytes_allocated, target_footprint); in GrowForUtilization()
3613 ? bytes_allocated + static_cast<size_t>(grow_bytes * foreground_heap_growth_multiplier_) in GrowForUtilization()
3624 UnsignedDifference(bytes_allocated + freed_bytes, bytes_allocated_before_gc); in GrowForUtilization()
3641 concurrent_start_bytes_ = std::max(target_footprint - remaining_bytes, bytes_allocated); in GrowForUtilization()
4308 size_t* bytes_allocated, in AllocWithNewTLAB() argument
4377 bytes_allocated, in AllocWithNewTLAB()
4388 bytes_allocated, in AllocWithNewTLAB()
4401 bytes_allocated, in AllocWithNewTLAB()
4413 *bytes_allocated = alloc_size; in AllocWithNewTLAB()