Home
last modified time | relevance | path

Searched refs:next_region (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/space/
Dregion_space-inl.h334 size_t next_region = -1; in AllocLarge() local
342 &next_region); in AllocLarge()
345 DCHECK_EQ(next_region, static_cast<size_t>(-1)); in AllocLarge()
355 &next_region); in AllocLarge()
359 DCHECK_LT(0u, next_region); in AllocLarge()
360 DCHECK_LE(next_region, num_regions_); in AllocLarge()
363 cyclic_alloc_region_index_ = next_region % num_regions_; in AllocLarge()
387 /* out */ size_t* next_region) { in AllocLargeInRange() argument
447 if (next_region != nullptr) { in AllocLargeInRange()
449 *next_region = right; in AllocLargeInRange()
Dregion_space.h727 /* out */ size_t* next_region = nullptr) REQUIRES(region_lock_);
/art/dex2oat/linker/
Dimage_writer.cc2975 const size_t next_region = RoundUp(offset_after_header, region_size_); in CopyAndFixupObject() local
2976 if (offset_after_header != next_region) { in CopyAndFixupObject()
2978 CHECK_LT(offset_after_header, next_region) in CopyAndFixupObject()
2980 CHECK_LE(offset_after_header + n, next_region) in CopyAndFixupObject()