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/runtime/base/
H A Darena_allocator.cc104 // may not have the bytes_allocated_ updated correctly.
124 Arena::Arena() : bytes_allocated_(0), next_(nullptr) {
150 if (bytes_allocated_ > 0) {
152 bytes_allocated_ = 0;
157 if (bytes_allocated_ > 0) {
158 memset(Begin(), 0, bytes_allocated_); local
159 bytes_allocated_ = 0;
222 VALGRIND_MAKE_MEM_UNDEFINED(arena->memory_, arena->bytes_allocated_);
265 arena_head_->bytes_allocated_ = ptr_ - begin_;
H A Darena_allocator.h138 return Size() - bytes_allocated_;
142 return bytes_allocated_;
147 return memory_ <= ptr && ptr < memory_ + bytes_allocated_;
151 size_t bytes_allocated_; member in class:art::Arena

Completed in 209 milliseconds