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

  /art/runtime/gc/space/
dlmalloc_space.h 99 growth_limit_ = NonGrowthLimitCapacity();
104 return growth_limit_;
191 // Prior to forking the zygote the heap will have a maximally sized mem_map_ but the growth_limit_
192 // will be set to a lower value. The growth_limit_ is used as the capacity of the alloc_space_,
193 // however, capacity normally can't vary. In the case of the growth_limit_ it can be cleared
195 size_t growth_limit_; member in class:art::gc::space::DlMallocSpace
dlmalloc_space.cc 125 growth_limit_(growth_limit) {
275 growth_limit_ = growth_limit;
276 if (Size() > growth_limit_) {
296 const size_t growth_limit = growth_limit_ - size;
301 << "GrowthLimit " << growth_limit_ << "\n"
  /art/runtime/gc/
heap.h 324 return growth_limit_;
583 size_t growth_limit_; member in class:art::gc::Heap
heap.cc 92 growth_limit_(growth_limit),
816 if (UNLIKELY(new_footprint > growth_limit_)) {
    [all...]

Completed in 138 milliseconds