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

  /art/runtime/gc/accounting/
atomic_stack.h 92 return AtomicPushBackInternal(value, growth_limit_);
108 if (UNLIKELY(static_cast<size_t>(new_index) >= growth_limit_)) {
138 DCHECK_LT(static_cast<size_t>(index), growth_limit_); local
169 return Size() == growth_limit_;
191 growth_limit_ = new_capacity;
226 growth_limit_(growth_limit),
273 size_t growth_limit_; member in class:art::gc::accounting::AtomicStack
  /art/runtime/gc/space/
malloc_space.h 95 growth_limit_ = NonGrowthLimitCapacity();
100 return growth_limit_;
174 // Prior to forking the zygote the heap will have a maximally sized mem_map_ but the growth_limit_
175 // will be set to a lower value. The growth_limit_ is used as the capacity of the alloc_space_,
176 // however, capacity normally can't vary. In the case of the growth_limit_ it can be cleared
178 size_t growth_limit_; member in class:art::gc::space::MallocSpace
malloc_space.cc 49 growth_limit_(growth_limit), can_move_objects_(can_move_objects),
129 growth_limit_ = growth_limit;
130 if (Size() > growth_limit_) {
180 const size_t growth_limit = growth_limit_ - size;
186 << "GrowthLimit " << growth_limit_ << "\n"
  /art/runtime/gc/
heap.h 528 // become larger than growth_limit_ in rare cases.
529 return std::max(GetBytesAllocated(), growth_limit_);
543 return growth_limit_ - GetBytesAllocated();
1214 size_t growth_limit_; member in class:art::gc::Heap
    [all...]
heap-inl.h 398 if (UNLIKELY(new_footprint > growth_limit_)) {
heap.cc 221 growth_limit_(growth_limit),
459 CreateMainMallocSpace(main_mem_map_1.release(), initial_size, growth_limit_, capacity_);
481 growth_limit_, capacity_, name, true));
1221 << growth_limit_; local
    [all...]

Completed in 114 milliseconds