Home
last modified time | relevance | path

Searched refs:target_size (Results 1 – 3 of 3) 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/libartbase/base/
Dhash_set_test.cc225 static constexpr size_t target_size = 5000; in TEST_F() local
234 size_t delta = std::abs(static_cast<ssize_t>(target_size) - in TEST_F()
237 if (n % target_size == 0) { in TEST_F()
242 } else if (n % target_size < delta) { in TEST_F()
/art/runtime/gc/
Dheap.cc3523 uint64_t target_size, grow_bytes; in GrowForUtilization() local
3535 target_size = bytes_allocated + static_cast<uint64_t>(grow_bytes * multiplier); in GrowForUtilization()
3567 target_size = bytes_allocated + adjusted_max_free; in GrowForUtilization()
3570 target_size = std::max(bytes_allocated, target_footprint); in GrowForUtilization()
3575 CHECK_LE(target_size, std::numeric_limits<size_t>::max()); in GrowForUtilization()
3577 SetIdealFootprint(target_size); in GrowForUtilization()