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 304 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; local
305 if (UNLIKELY(new_footprint > max_allowed_footprint_)) {
306 if (UNLIKELY(new_footprint > growth_limit_)) {
315 << PrettySize(new_footprint) << " for a " << PrettySize(alloc_size) << " allocation";
316 max_allowed_footprint_ = new_footprint;
  /art/runtime/gc/allocator/
rosalloc.cc 174 size_t new_footprint = footprint_ + increment; local
175 size_t new_num_of_pages = new_footprint / kPageSize;
187 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint);
207 << footprint_ << " to " << new_footprint; local
209 footprint_ = new_footprint;
1503 size_t new_footprint = footprint_ - decrement; local
1529 << footprint_ << " to " << new_footprint; local
    [all...]

Completed in 639 milliseconds