HomeSort by relevance Sort by last modified time
    Searched defs:growth_limit_ (Results 1 - 4 of 4) sorted by null

  /art/runtime/gc/space/
malloc_space.h 105 growth_limit_ = NonGrowthLimitCapacity();
110 return growth_limit_;
184 // Prior to forking the zygote the heap will have a maximally sized mem_map_ but the growth_limit_
185 // will be set to a lower value. The growth_limit_ is used as the capacity of the alloc_space_,
186 // however, capacity normally can't vary. In the case of the growth_limit_ it can be cleared
188 size_t growth_limit_; member in class:art::gc::space::MallocSpace
  /art/runtime/gc/accounting/
atomic_stack.h 91 return AtomicPushBackInternal(value, growth_limit_);
107 if (UNLIKELY(static_cast<size_t>(new_index) >= growth_limit_)) {
137 DCHECK_LT(static_cast<size_t>(index), growth_limit_); local
168 return Size() == growth_limit_;
190 growth_limit_ = new_capacity;
225 growth_limit_(growth_limit),
272 size_t growth_limit_; member in class:art::gc::accounting::AtomicStack
  /art/runtime/gc/
heap.h 518 // become larger than growth_limit_ in rare cases.
519 return std::max(GetBytesAllocated(), growth_limit_);
533 return growth_limit_ - GetBytesAllocated();
1211 size_t growth_limit_; member in class:art::gc::Heap
    [all...]
heap.cc 219 growth_limit_(growth_limit),
456 CreateMainMallocSpace(main_mem_map_1.release(), initial_size, growth_limit_, capacity_);
478 growth_limit_, capacity_, name, true));
1224 << growth_limit_; local
    [all...]

Completed in 77 milliseconds