Home
last modified time | relevance | path

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

/art/runtime/base/
Darena_allocator.cc198 constexpr size_t overallocation = RequiredOverallocation(); in MallocArena() local
199 unaligned_memory_ = reinterpret_cast<uint8_t*>(calloc(1, size + overallocation)); in MallocArena()
202 if (overallocation == 0u) { in MallocArena()
208 size_t tail = overallocation - head; in MallocArena()
218 constexpr size_t overallocation = RequiredOverallocation(); in ~MallocArena() local
219 if (overallocation != 0u && UNLIKELY(RUNNING_ON_MEMORY_TOOL > 0)) { in ~MallocArena()
221 size_t tail = overallocation - head; in ~MallocArena()