HomeSort by relevance Sort by last modified time
    Searched defs:bytes_allocated_ (Results 1 - 3 of 3) sorted by null

  /art/runtime/gc/space/
bump_pointer_space.h 151 bytes_allocated_.FetchAndSubSequentiallyConsistent(bytes);
174 AtomicInteger bytes_allocated_; // Accumulated from revoked thread local regions. member in class:art::gc::space::FINAL
  /art/runtime/base/
arena_allocator.cc 104 // 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_;
arena_allocator.h 138 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 50 milliseconds