Lines Matching refs:bytes_allocated

1115   uint64_t bytes_allocated = GetBytesAllocated();  in CalculateGcWeightedAllocatedBytes()  local
1117 return weight * bytes_allocated; in CalculateGcWeightedAllocatedBytes()
1744 size_t* bytes_allocated, in AllocateInternalWithGc() argument
1788 mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated, in AllocateInternalWithGc()
1818 alloc_size, bytes_allocated, in AllocateInternalWithGc()
1841 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated, in AllocateInternalWithGc()
1865 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated, in AllocateInternalWithGc()
2251 size_t bytes_allocated, unused_bytes_tl_bulk_allocated; in MarkNonForwardedObject() local
2253 self_, alloc_size, &bytes_allocated, nullptr, &unused_bytes_tl_bulk_allocated); in MarkNonForwardedObject()
3520 const size_t bytes_allocated = GetBytesAllocated(); in GrowForUtilization() local
3522 TraceHeapSize(bytes_allocated); in GrowForUtilization()
3530 uint64_t delta = bytes_allocated * (1.0 / GetTargetHeapUtilization() - 1.0); in GrowForUtilization()
3531 DCHECK_LE(delta, std::numeric_limits<size_t>::max()) << "bytes_allocated=" << bytes_allocated in GrowForUtilization()
3535 target_size = bytes_allocated + static_cast<uint64_t>(grow_bytes * multiplier); in GrowForUtilization()
3559 bytes_allocated <= (IsGcConcurrent() ? concurrent_start_bytes_ : target_footprint)) { in GrowForUtilization()
3566 if (bytes_allocated + adjusted_max_free < target_footprint) { in GrowForUtilization()
3567 target_size = bytes_allocated + adjusted_max_free; in GrowForUtilization()
3570 target_size = std::max(bytes_allocated, target_footprint); in GrowForUtilization()
3584 ? bytes_allocated + static_cast<size_t>(grow_bytes * foreground_heap_growth_multiplier_) in GrowForUtilization()
3593 CHECK_GE(bytes_allocated + freed_bytes, bytes_allocated_before_gc); in GrowForUtilization()
3594 const size_t bytes_allocated_during_gc = bytes_allocated + freed_bytes - in GrowForUtilization()
3612 concurrent_start_bytes_ = std::max(target_footprint - remaining_bytes, bytes_allocated); in GrowForUtilization()
4175 size_t* bytes_allocated, in AllocWithNewTLAB() argument
4219 bytes_allocated, in AllocWithNewTLAB()
4228 bytes_allocated, in AllocWithNewTLAB()
4239 bytes_allocated, in AllocWithNewTLAB()
4249 *bytes_allocated = alloc_size; in AllocWithNewTLAB()