Lines Matching refs:End
92 CHECK_ALIGNED(mem_map.End(), kRegionSize); in CreateMemMap()
106 mem_map.End(), in RegionSpace()
107 mem_map.End(), in RegionSpace()
135 CHECK_EQ(static_cast<size_t>(regions_[i].End() - regions_[i].Begin()), kRegionSize); in RegionSpace()
137 CHECK_EQ(regions_[i].End(), regions_[i + 1].Begin()); in RegionSpace()
140 CHECK_EQ(regions_[num_regions_ - 1].End(), Limit()); in RegionSpace()
385 rb_table->Clear(r->Begin(), r->End()); in SetFromSpace()
409 DCHECK_ALIGNED_PARAM(regions_[i].End(), gPageSize); in ReleaseFreeRegions()
410 bool res = madvise(begin, regions_[i].End() - begin, MADV_DONTNEED); in ReleaseFreeRegions()
457 clear_block_end = r->End(); in ClearFromSpace()
725 if (current_region_->End() - current_region_->Top() > 0) { in LogFragmentationAllocFailure()
726 max_contiguous_allocation = current_region_->End() - current_region_->Top(); in LogFragmentationAllocFailure()
873 pos = r->End() - largest_partial_tlab->first; in AllocNewTlab()
875 DCHECK_GT(r->End(), pos); in AllocNewTlab()
890 r->SetTop(r->End()); in AllocNewTlab()
891 self->SetTlab(start, start + tlab_size, r->End()); in AllocNewTlab()
920 DCHECK_GE(r->End(), thread->GetTlabPos()); in RevokeThreadLocalBuffersLocked()
922 size_t remaining_bytes = r->End() - thread->GetTlabPos(); in RevokeThreadLocalBuffersLocked()