Searched defs:grow (Results 1 - 2 of 2) sorted by relevance

/art/runtime/gc/
H A Dheap-inl.h387 bool grow) {
394 if (!grow) {
385 IsOutOfMemoryOnAllocation(AllocatorType allocator_type, size_t alloc_size, bool grow) argument
H A Dheap.cc144 // How much we grow the TLAB if we can do it.
1803 if (!IsOutOfMemoryOnAllocation(allocator, alloc_size, /*grow*/ false)) {
3580 // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
3584 const double multiplier = HeapGrowthMultiplier(); // Use the multiplier to grow more for
4196 bool grow,
4203 // There is enough space if we grow the TLAB. Lets do that. This increases the
4209 if (UNLIKELY(IsOutOfMemoryOnAllocation(allocator_type, expand_bytes, grow))) {
4218 if (UNLIKELY(IsOutOfMemoryOnAllocation(allocator_type, new_tlab_size, grow))) {
4234 grow))) {
4250 if (!IsOutOfMemoryOnAllocation(allocator_type, alloc_size, grow)) {
4194 AllocWithNewTLAB(Thread* self, size_t alloc_size, bool grow, size_t* bytes_allocated, size_t* usable_size, size_t* bytes_tl_bulk_allocated) argument
[all...]

Completed in 242 milliseconds