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

  /art/runtime/gc/
heap-inl.h 406 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; local
407 if (UNLIKELY(new_footprint > max_allowed_footprint_)) {
408 if (UNLIKELY(new_footprint > growth_limit_)) {
417 << PrettySize(new_footprint) << " for a " << PrettySize(alloc_size) << " allocation";
418 max_allowed_footprint_ = new_footprint;
  /art/runtime/gc/allocator/
rosalloc.cc 179 size_t new_footprint = footprint_ + increment; local
180 size_t new_num_of_pages = new_footprint / kPageSize;
192 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint);
212 << footprint_ << " to " << new_footprint; local
214 footprint_ = new_footprint;
1511 size_t new_footprint = footprint_ - decrement; local
1537 << footprint_ << " to " << new_footprint; local
    [all...]

Completed in 502 milliseconds