HomeSort by relevance Sort by last modified time
    Searched defs:new_footprint (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/
heap-inl.h 394 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; local
395 if (UNLIKELY(new_footprint > max_allowed_footprint_)) {
396 if (UNLIKELY(new_footprint > growth_limit_)) {
405 << PrettySize(new_footprint) << " for a " << PrettySize(alloc_size) << " allocation";
406 max_allowed_footprint_ = new_footprint;
  /art/runtime/gc/allocator/
rosalloc.cc 192 size_t new_footprint = footprint_ + increment; local
193 size_t new_num_of_pages = new_footprint / kPageSize;
205 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint);
225 << footprint_ << " to " << new_footprint; local
227 footprint_ = new_footprint;
1359 size_t new_footprint = footprint_ - decrement; local
1385 << footprint_ << " to " << new_footprint; local
    [all...]

Completed in 63 milliseconds