Home
last modified time | relevance | path

Searched refs:max_free_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc134 max_free_(max_free), in Heap()
1783 if (target_size > native_size + max_free_) { in UpdateMaxNativeFootprint()
1784 target_size = native_size + max_free_; in UpdateMaxNativeFootprint()
1803 if (target_size > bytes_allocated + max_free_) { in GrowForUtilization()
1804 target_size = bytes_allocated + max_free_; in GrowForUtilization()
1819 if (bytes_allocated + max_free_ < max_allowed_footprint_) { in GrowForUtilization()
1820 target_size = bytes_allocated + max_free_; in GrowForUtilization()
Dheap.h697 size_t max_free_; variable