Searched refs:new_footprint (Results 1 – 6 of 6) sorted by relevance
/art/runtime/gc/ |
D | heap-inl.h | 396 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; in IsOutOfMemoryOnAllocation() local 397 if (UNLIKELY(new_footprint > max_allowed_footprint_)) { in IsOutOfMemoryOnAllocation() 398 if (UNLIKELY(new_footprint > growth_limit_)) { in IsOutOfMemoryOnAllocation() 406 VlogHeapGrowth(max_allowed_footprint_, new_footprint, alloc_size); in IsOutOfMemoryOnAllocation() 407 max_allowed_footprint_ = new_footprint; in IsOutOfMemoryOnAllocation()
|
D | heap.h | 1094 static void VlogHeapGrowth(size_t max_allowed_footprint, size_t new_footprint, size_t alloc_size);
|
D | heap.cc | 4108 void Heap::VlogHeapGrowth(size_t max_allowed_footprint, size_t new_footprint, size_t alloc_size) { in VlogHeapGrowth() argument 4110 << PrettySize(new_footprint) << " for a " << PrettySize(alloc_size) << " allocation"; in VlogHeapGrowth()
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 193 size_t new_footprint = footprint_ + increment; in AllocPages() local 194 size_t new_num_of_pages = new_footprint / kPageSize; in AllocPages() 206 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint); in AllocPages() 226 << footprint_ << " to " << new_footprint; in AllocPages() 228 footprint_ = new_footprint; in AllocPages() 1360 size_t new_footprint = footprint_ - decrement; in Trim() local 1361 DCHECK_EQ(new_footprint % kPageSize, static_cast<size_t>(0)); in Trim() 1362 size_t new_num_of_pages = new_footprint / kPageSize; in Trim() 1386 << footprint_ << " to " << new_footprint; in Trim() 1388 DCHECK_LT(new_footprint, footprint_); in Trim() [all …]
|
/art/runtime/jit/ |
D | jit_code_cache.h | 337 void SetFootprintLimit(size_t new_footprint) REQUIRES(lock_);
|
D | jit_code_cache.cc | 1143 void JitCodeCache::SetFootprintLimit(size_t new_footprint) { in SetFootprintLimit() argument 1144 size_t per_space_footprint = new_footprint / 2; in SetFootprintLimit() 1146 DCHECK_EQ(per_space_footprint * 2, new_footprint); in SetFootprintLimit()
|