Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc4370 size_t next_tlab_size = jhp_def_tlab_size; in JHPCalculateNextTlabSize() local
4377 next_tlab_size = std::min(next_sample_point, jhp_def_tlab_size); in JHPCalculateNextTlabSize()
4379 return next_tlab_size; in JHPCalculateNextTlabSize()
4481 size_t next_tlab_size = JHPCalculateNextTlabSize(self, in AllocWithNewTLAB() local
4488 std::min(self->TlabRemainingCapacity() - self->TlabSize(), next_tlab_size)); in AllocWithNewTLAB()
4497 size_t next_tlab_size = JHPCalculateNextTlabSize(self, in AllocWithNewTLAB() local
4502 const size_t new_tlab_size = alloc_size + next_tlab_size; in AllocWithNewTLAB()