Searched defs:bytes_allocated_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/space/
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;
183 VALGRIND_MAKE_MEM_UNDEFINED(arena->memory_, arena->bytes_allocated_);
215 arena_head_->bytes_allocated_ = ptr_ - begin_;
H A Darena_allocator.h124 return Size() - bytes_allocated_;
128 size_t bytes_allocated_; member in class:art::Arena

Completed in 1040 milliseconds