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 396 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; local
397 if (UNLIKELY(new_footprint > max_allowed_footprint_)) {
398 if (UNLIKELY(new_footprint > growth_limit_)) {
406 VlogHeapGrowth(max_allowed_footprint_, new_footprint, alloc_size);
407 max_allowed_footprint_ = new_footprint;
  /art/runtime/gc/allocator/
rosalloc.cc 193 size_t new_footprint = footprint_ + increment; local
194 size_t new_num_of_pages = new_footprint / kPageSize;
206 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint);
226 << footprint_ << " to " << new_footprint; local
228 footprint_ = new_footprint;
1360 size_t new_footprint = footprint_ - decrement; local
1386 << footprint_ << " to " << new_footprint; local
    [all...]

Completed in 72 milliseconds