Searched refs:new_footprint (Results 1 – 4 of 4) sorted by relevance
408 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size; in IsOutOfMemoryOnAllocation() local409 if (UNLIKELY(new_footprint > max_allowed_footprint_)) { in IsOutOfMemoryOnAllocation()410 if (UNLIKELY(new_footprint > growth_limit_)) { in IsOutOfMemoryOnAllocation()419 << PrettySize(new_footprint) << " for a " << PrettySize(alloc_size) << " allocation"; in IsOutOfMemoryOnAllocation()420 max_allowed_footprint_ = new_footprint; in IsOutOfMemoryOnAllocation()
187 size_t new_footprint = footprint_ + increment; in AllocPages() local188 size_t new_num_of_pages = new_footprint / kPageSize; in AllocPages()200 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint); in AllocPages()220 << footprint_ << " to " << new_footprint; in AllocPages()222 footprint_ = new_footprint; in AllocPages()1366 size_t new_footprint = footprint_ - decrement; in Trim() local1367 DCHECK_EQ(new_footprint % kPageSize, static_cast<size_t>(0)); in Trim()1368 size_t new_num_of_pages = new_footprint / kPageSize; in Trim()1392 << footprint_ << " to " << new_footprint; in Trim()1394 DCHECK_LT(new_footprint, footprint_); in Trim()[all …]
505 void JitCodeCache::SetFootprintLimit(size_t new_footprint) { in SetFootprintLimit() argument506 size_t per_space_footprint = new_footprint / 2; in SetFootprintLimit()508 DCHECK_EQ(per_space_footprint * 2, new_footprint); in SetFootprintLimit()
243 void SetFootprintLimit(size_t new_footprint) REQUIRES(lock_);