Lines Matching refs:num_regions_
130 for (size_t i = 0; i < num_regions_; ++i) { in GetBytesAllocatedInternal()
165 for (size_t i = 0; i < num_regions_; ++i) { in GetObjectsAllocatedInternal()
200 ? num_regions_ : std::min(num_regions_, non_free_region_index_limit_); in ScanUnevacFromSpace()
236 for (size_t i = 0; i < num_regions_; ++i) { in WalkInternal()
326 if ((num_non_free_regions_ + num_regs_in_large_region) * 2 > num_regions_) { in AllocLarge()
337 num_regions_, in AllocLarge()
350 std::min(cyclic_alloc_region_index_ + num_regs_in_large_region - 1, num_regions_), in AllocLarge()
360 DCHECK_LE(next_region, num_regions_); in AllocLarge()
363 cyclic_alloc_region_index_ = next_region % num_regions_; in AllocLarge()
368 num_regions_, in AllocLarge()
390 DCHECK_LE(end, num_regions_); in AllocLargeInRange()
401 DCHECK_LE(right, num_regions_); in AllocLargeInRange()
427 DCHECK_LT(p, num_regions_); in AllocLargeInRange()