Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h111 if (IsTLABAllocator(allocator) && byte_count <= self->TlabSize()) { in AllocObjectWithAllocator()
395 if (UNLIKELY(self->TlabSize() < alloc_size)) { in TryToAllocate()
Dheap.cc4177 DCHECK_GT(alloc_size, self->TlabSize()); in AllocWithNewTLAB()
4180 const size_t min_expand_size = alloc_size - self->TlabSize(); in AllocWithNewTLAB()
4183 std::min(self->TlabRemainingCapacity() - self->TlabSize(), kPartialTlabSize)); in AllocWithNewTLAB()
4189 DCHECK_LE(alloc_size, self->TlabSize()); in AllocWithNewTLAB()
/art/runtime/
Dthread-inl.h308 DCHECK_GE(TlabSize(), bytes); in AllocTlab()
Dthread.h1149 size_t TlabSize() const { in TlabSize() function
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc48 if (LIKELY(byte_count < self->TlabSize())) { in artAllocObjectFromCode()