Searched defs:max_contiguous_allocation (Results 1 - 3 of 3) sorted by last modified time

/art/runtime/gc/space/
H A Dbump_pointer_space.cc216 size_t max_contiguous_allocation = Limit() - End(); local
218 << max_contiguous_allocation << " bytes)"; local
H A Ddlmalloc_space.cc300 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg); local
301 max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
308 size_t max_contiguous_allocation = 0; local
314 Walk(MSpaceChunkCallback, &max_contiguous_allocation);
316 << max_contiguous_allocation << " bytes)"; local
H A Dregion_space.cc392 size_t max_contiguous_allocation = 0; local
395 max_contiguous_allocation = current_region_->End() - current_region_->Top();
422 max_contiguous_allocation = std::max(max_contiguous_allocation,
426 << max_contiguous_allocation << " bytes)"; local

Completed in 45 milliseconds