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

  /art/runtime/gc/space/
bump_pointer_space.h 159 bytes_allocated_.FetchAndSubSequentiallyConsistent(bytes);
182 AtomicInteger bytes_allocated_; // Accumulated from revoked thread local regions. member in class:art::gc::space::FINAL
  /art/runtime/base/
arena_allocator.cc 142 // may not have the bytes_allocated_ updated correctly.
189 Arena::Arena() : bytes_allocated_(0), memory_(nullptr), size_(0), next_(nullptr) {
269 if (bytes_allocated_ > 0) {
271 bytes_allocated_ = 0;
276 if (bytes_allocated_ > 0) {
277 memset(Begin(), 0, bytes_allocated_); local
278 bytes_allocated_ = 0;
354 MEMORY_TOOL_MAKE_UNDEFINED(arena->memory_, arena->bytes_allocated_);
407 arena_head_->bytes_allocated_ = ptr_ - begin_;
468 new_arena->bytes_allocated_ = bytes; // UpdateBytesAllocated() on the new_arena
    [all...]
arena_allocator.h 221 return Size() - bytes_allocated_;
225 return bytes_allocated_;
230 return memory_ <= ptr && ptr < memory_ + bytes_allocated_;
234 size_t bytes_allocated_; member in class:art::Arena
  /external/v8/src/heap/
incremental-marking.h 288 size_t bytes_allocated_; member in class:v8::internal::IncrementalMarking

Completed in 5792 milliseconds