Searched refs:bytes_allocated_ (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/space/
H A Dbump_pointer_space-inl.h53 bytes_allocated_.StoreRelaxed(bytes_allocated_.LoadRelaxed() + num_bytes);
79 bytes_allocated_.FetchAndAddSequentiallyConsistent(num_bytes);
H A Dbump_pointer_space.cc49 objects_allocated_(0), bytes_allocated_(0),
59 objects_allocated_(0), bytes_allocated_(0),
75 bytes_allocated_.StoreRelaxed(0);
210 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed());
246 bytes_allocated_.FetchAndAddSequentiallyConsistent(thread->GetThreadLocalBytesAllocated());
H A Dbump_pointer_space.h151 bytes_allocated_.FetchAndSubSequentiallyConsistent(bytes);
174 AtomicInteger bytes_allocated_; // Accumulated from revoked thread local regions. member in class:art::gc::space::FINAL
/art/compiler/utils/
H A Darena_allocator.cc94 // may not have the bytes_allocated_ updated correctly.
115 : bytes_allocated_(0),
140 if (bytes_allocated_) {
142 memset(Begin(), 0, bytes_allocated_); local
146 bytes_allocated_ = 0;
192 VALGRIND_MAKE_MEM_UNDEFINED(arena->memory_, arena->bytes_allocated_);
224 arena_head_->bytes_allocated_ = ptr_ - begin_;
H A Dscoped_arena_allocator.cc88 if (top_arena_->bytes_allocated_ < allocated) {
89 top_arena_->bytes_allocated_ = allocated;
H A Darena_allocator.h124 return Size() - bytes_allocated_;
128 return bytes_allocated_;
132 size_t bytes_allocated_; member in class:art::Arena

Completed in 384 milliseconds