Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc4209 size_t next_tlab_size = jhp_def_tlab_size; in JHPCalculateNextTlabSize() local
4216 next_tlab_size = std::min(next_sample_point, jhp_def_tlab_size); in JHPCalculateNextTlabSize()
4218 return next_tlab_size; in JHPCalculateNextTlabSize()
4320 size_t next_tlab_size = JHPCalculateNextTlabSize(self, in AllocWithNewTLAB() local
4327 std::min(self->TlabRemainingCapacity() - self->TlabSize(), next_tlab_size)); in AllocWithNewTLAB()
4336 size_t next_tlab_size = JHPCalculateNextTlabSize(self, in AllocWithNewTLAB() local
4341 const size_t new_tlab_size = alloc_size + next_tlab_size; in AllocWithNewTLAB()