Home
last modified time | relevance | path

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

/art/libartbase/base/
Darena_allocator.cc133 size_t malloc_bytes = 0u; in Dump() local
137 malloc_bytes += arena->Size(); in Dump()
145 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes in Dump()
/art/runtime/native/
Djdk_internal_misc_Unsafe.cc282 const size_t malloc_bytes = static_cast<size_t>(bytes); in Unsafe_allocateMemory() local
283 void* mem = malloc(malloc_bytes); in Unsafe_allocateMemory()
/art/runtime/gc/
Dheap.cc2709 size_t malloc_bytes; in GetNativeBytes() local
2718 malloc_bytes = (unsigned int)mi.uordblks; in GetNativeBytes()
2721 malloc_bytes = mi.uordblks; in GetNativeBytes()
2732 if (mmapped_bytes > malloc_bytes) { in GetNativeBytes()
2733 malloc_bytes = mmapped_bytes; in GetNativeBytes()
2739 malloc_bytes = 1000; in GetNativeBytes()
2741 return malloc_bytes + native_bytes_registered_.load(std::memory_order_relaxed); in GetNativeBytes()