Home
last modified time | relevance | path

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

/art/runtime/
Dmonitor_pool_test.cc95 size_t target_size = monitors.size() + 2*kMaxUsage; in TEST_F() local
96 while (monitors.size() < target_size) { in TEST_F()
/art/runtime/gc/
Dheap.cc2835 size_t target_size = native_size / GetTargetHeapUtilization(); in UpdateMaxNativeFootprint() local
2836 if (target_size > native_size + max_free_) { in UpdateMaxNativeFootprint()
2837 target_size = native_size + max_free_; in UpdateMaxNativeFootprint()
2838 } else if (target_size < native_size + min_free_) { in UpdateMaxNativeFootprint()
2839 target_size = native_size + min_free_; in UpdateMaxNativeFootprint()
2841 native_footprint_gc_watermark_ = std::min(growth_limit_, target_size); in UpdateMaxNativeFootprint()
2868 uint64_t target_size; in GrowForUtilization() local
2876 target_size = bytes_allocated + delta * multiplier; in GrowForUtilization()
2877 target_size = std::min(target_size, in GrowForUtilization()
2879 target_size = std::max(target_size, in GrowForUtilization()
[all …]