Home
last modified time | relevance | path

Searched refs:malloc_bytes (Results 1 – 2 of 2) 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/gc/
Dheap.cc2533 size_t malloc_bytes; in GetNativeBytes() local
2542 malloc_bytes = (unsigned int)mi.uordblks; in GetNativeBytes()
2545 malloc_bytes = mi.uordblks; in GetNativeBytes()
2556 if (mmapped_bytes > malloc_bytes) { in GetNativeBytes()
2557 malloc_bytes = mmapped_bytes; in GetNativeBytes()
2563 malloc_bytes = 1000; in GetNativeBytes()
2565 return malloc_bytes + native_bytes_registered_.load(std::memory_order_relaxed); in GetNativeBytes()