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

  /art/runtime/gc/space/
large_object_space.h 53 return num_bytes_allocated_;
117 uint64_t num_bytes_allocated_; member in class:art::gc::space::LargeObjectSpace
large_object_space.cc 116 num_bytes_allocated_(0), num_objects_allocated_(0), total_bytes_allocated_(0),
164 num_bytes_allocated_ += allocation_size;
195 DCHECK_GE(num_bytes_allocated_, map_size);
197 num_bytes_allocated_ -= allocation_size;
453 DCHECK_LE(allocation_size, num_bytes_allocated_);
454 num_bytes_allocated_ -= allocation_size;
518 num_bytes_allocated_ += allocation_size;
  /art/runtime/gc/
heap-inl.h 159 num_bytes_allocated_.FetchAndAddRelaxed(bytes_tl_bulk_allocated);
396 size_t new_footprint = num_bytes_allocated_.LoadSequentiallyConsistent() + alloc_size;
heap.cc 226 num_bytes_allocated_(0),
548 num_bytes_allocated_.StoreRelaxed(0);
    [all...]
heap.h 499 return num_bytes_allocated_.LoadSequentiallyConsistent();
549 size_t byte_allocated = num_bytes_allocated_.LoadSequentiallyConsistent();
1231 Atomic<size_t> num_bytes_allocated_; member in class:art::gc::Heap
    [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc     [all...]

Completed in 245 milliseconds