Searched defs:new_footprint (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/
H A Dheap-inl.h408 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; local
409 if (UNLIKELY(new_footprint > max_allowed_footprint_)) {
410 if (UNLIKELY(new_footprint > growth_limit_)) {
419 << PrettySize(new_footprint) << " for a " << PrettySize(alloc_size) << " allocation";
420 max_allowed_footprint_ = new_footprint;
/art/runtime/jit/
H A Djit_code_cache.cc506 void JitCodeCache::SetFootprintLimit(size_t new_footprint) { argument
507 size_t per_space_footprint = new_footprint / 2;
509 DCHECK_EQ(per_space_footprint * 2, new_footprint);
/art/runtime/gc/allocator/
H A Drosalloc.cc187 size_t new_footprint = footprint_ + increment; local
188 size_t new_num_of_pages = new_footprint / kPageSize;
200 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint);
220 << footprint_ << " to " << new_footprint; local
222 footprint_ = new_footprint;
1366 size_t new_footprint = footprint_ - decrement; local
1367 DCHECK_EQ(new_footprint % kPageSize, static_cast<size_t>(0));
1368 size_t new_num_of_pages = new_footprint / kPageSize;
1392 << footprint_ << " to " << new_footprint; local
1394 DCHECK_LT(new_footprint, footprint
[all...]

Completed in 171 milliseconds