HomeSort by relevance Sort by last modified time
    Searched refs:num_bytes_allocated_ (Results 1 - 7 of 7) sorted by null

  /art/runtime/gc/space/
dlmalloc_space-inl.h 50 num_bytes_allocated_ += allocation_size;
large_object_space.cc 41 num_bytes_allocated_(0), num_objects_allocated_(0), total_bytes_allocated_(0),
71 num_bytes_allocated_ += allocation_size;
82 DCHECK_GE(num_bytes_allocated_, found->second->Size());
84 num_bytes_allocated_ -= allocation_size;
228 DCHECK_LE(allocation_size, num_bytes_allocated_);
229 num_bytes_allocated_ -= allocation_size;
288 num_bytes_allocated_ += allocation_size;
dlmalloc_space.h 131 return num_bytes_allocated_;
172 size_t num_bytes_allocated_; member in class:art::gc::space::DlMallocSpace
large_object_space.h 45 return num_bytes_allocated_;
66 size_t num_bytes_allocated_; member in class:art::gc::space::LargeObjectSpace
dlmalloc_space.cc 122 recent_free_pos_(0), num_bytes_allocated_(0), num_objects_allocated_(0),
356 num_bytes_allocated_ -= bytes_freed;
403 num_bytes_allocated_ -= bytes_freed;
  /art/runtime/gc/
heap.h 297 return num_bytes_allocated_;
333 return GetTotalMemory() - num_bytes_allocated_;
608 // When num_bytes_allocated_ exceeds this amount then a concurrent GC should be requested so that
622 AtomicInteger num_bytes_allocated_; member in class:art::gc::Heap
heap.cc 109 num_bytes_allocated_(0),
201 num_bytes_allocated_ = 0;
599 if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_) >= concurrent_start_bytes_)) {
731 if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_.load()) < 10 * KB)) {
777 num_bytes_allocated_.fetch_add(size);
798 DCHECK_LE(freed_bytes, static_cast<size_t>(num_bytes_allocated_));
799 num_bytes_allocated_.fetch_sub(freed_bytes);
814 size_t new_footprint = num_bytes_allocated_ + alloc_size;
    [all...]

Completed in 530 milliseconds