Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h85 if (IsTLABAllocator(allocator) && byte_count <= self->TlabSize()) { in AllocObjectWithAllocator()
357 if (UNLIKELY(self->TlabSize() < alloc_size)) { in TryToAllocate()
Dheap.cc4062 DCHECK_GT(alloc_size, self->TlabSize()); in AllocWithNewTLAB()
4065 const size_t min_expand_size = alloc_size - self->TlabSize(); in AllocWithNewTLAB()
4068 std::min(self->TlabRemainingCapacity() - self->TlabSize(), kPartialTlabSize)); in AllocWithNewTLAB()
4074 DCHECK_LE(alloc_size, self->TlabSize()); in AllocWithNewTLAB()
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc47 if (LIKELY(byte_count < self->TlabSize())) { in artAllocObjectFromCode()
/art/runtime/
Dthread-inl.h303 DCHECK_GE(TlabSize(), bytes); in AllocTlab()
Dthread.h1061 size_t TlabSize() const { in TlabSize() function