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

/art/runtime/gc/space/
H A Dbump_pointer_space.h153 bytes_allocated_.FetchAndSubSequentiallyConsistent(bytes);
176 AtomicInteger bytes_allocated_; // Accumulated from revoked thread local regions. member in class:art::gc::space::FINAL
/art/runtime/base/
H A Darena_allocator.cc134 // may not have the bytes_allocated_ updated correctly.
178 Arena::Arena() : bytes_allocated_(0), memory_(nullptr), size_(0), next_(nullptr) {
258 if (bytes_allocated_ > 0) {
260 bytes_allocated_ = 0;
265 if (bytes_allocated_ > 0) {
266 memset(Begin(), 0, bytes_allocated_); local
267 bytes_allocated_ = 0;
343 MEMORY_TOOL_MAKE_UNDEFINED(arena->memory_, arena->bytes_allocated_);
385 arena_head_->bytes_allocated_ = ptr_ - begin_;
446 new_arena->bytes_allocated_
[all...]
H A Darena_allocator.h218 return Size() - bytes_allocated_;
222 return bytes_allocated_;
227 return memory_ <= ptr && ptr < memory_ + bytes_allocated_;
231 size_t bytes_allocated_; member in class:art::Arena

Completed in 38 milliseconds