Home | History | Annotate | Download | only in gc

Lines Matching refs:bytes_allocated

1281                                              size_t alloc_size, size_t* bytes_allocated,
1301 mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated,
1315 mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated,
1335 mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated,
1344 mirror::Object* ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated,
1362 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated, usable_size);
1377 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated,
1421 ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated,
1912 size_t bytes_allocated;
1913 forward_address = to_space_->Alloc(self_, object_size, &bytes_allocated, nullptr);
2930 const uint64_t bytes_allocated = GetBytesAllocated();
2931 last_gc_size_ = bytes_allocated;
2939 intptr_t delta = bytes_allocated / GetTargetHeapUtilization() - bytes_allocated;
2941 target_size = bytes_allocated + delta * multiplier;
2943 bytes_allocated + static_cast<uint64_t>(max_free_ * multiplier));
2945 bytes_allocated + static_cast<uint64_t>(min_free_ * multiplier));
2961 bytes_allocated <= max_allowed_footprint_) {
2967 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
2968 target_size = bytes_allocated + max_free_;
2970 target_size = std::max(bytes_allocated, static_cast<uint64_t>(max_allowed_footprint_));
2995 static_cast<size_t>(bytes_allocated));