Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dlarge_object_space.cc116 num_bytes_allocated_(0), num_objects_allocated_(0), total_bytes_allocated_(0), in LargeObjectSpace()
166 num_bytes_allocated_ += allocation_size; in Alloc()
200 DCHECK_GE(num_bytes_allocated_, map_size); in Free()
202 num_bytes_allocated_ -= allocation_size; in Free()
484 DCHECK_LE(allocation_size, num_bytes_allocated_); in Free()
485 num_bytes_allocated_ -= allocation_size; in Free()
544 num_bytes_allocated_ += allocation_size; in Alloc()
Dlarge_object_space.h55 return num_bytes_allocated_; in GetBytesAllocated()
132 uint64_t num_bytes_allocated_ GUARDED_BY(lock_);
/art/runtime/gc/
Dheap-inl.h185 num_bytes_allocated_.fetch_add(bytes_tl_bulk_allocated, std::memory_order_relaxed); in AllocObjectWithAllocator()
434 size_t old_allocated = num_bytes_allocated_.load(std::memory_order_relaxed); in IsOutOfMemoryOnAllocation()
Dheap.h546 return num_bytes_allocated_.load(std::memory_order_relaxed); in GetBytesAllocated()
608 num_bytes_allocated_.load(std::memory_order_relaxed)); in GetFreeMemory()
1381 Atomic<size_t> num_bytes_allocated_; variable