Searched refs:objects_allocated_ (Results 1 – 8 of 8) sorted by relevance
/art/runtime/gc/space/ |
D | zygote_space.cc | 32 : objects_allocated_(objects_allocated) {} in CountObjectsAllocated() 35 ++*objects_allocated_; in operator ()() 39 size_t* const objects_allocated_; member in art::gc::space::CountObjectsAllocated 68 objects_allocated_(objects_allocated) { in ZygoteSpace() 123 zygote_space->objects_allocated_.FetchAndSubSequentiallyConsistent(num_ptrs); in SweepCallback()
|
D | bump_pointer_space-inl.h | 56 objects_allocated_.StoreRelaxed(objects_allocated_.LoadRelaxed() + 1); in AllocThreadUnsafe() 83 objects_allocated_.FetchAndAddSequentiallyConsistent(1); in AllocNonvirtual()
|
D | region_space.h | 239 objects_allocated_(0), alloc_time_(0), live_bytes_(static_cast<size_t>(-1)), in Region() 245 objects_allocated_(0), alloc_time_(0), live_bytes_(static_cast<size_t>(-1)), in Region() 263 objects_allocated_ = 0; in Clear() 284 DCHECK_EQ(objects_allocated_, 0U); in IsFree() 420 DCHECK_EQ(objects_allocated_, 0U); in ObjectsAllocated() 424 DCHECK_EQ(objects_allocated_, 0U); in ObjectsAllocated() 428 return objects_allocated_; in ObjectsAllocated() 456 DCHECK_EQ(objects_allocated_, 0U); in RecordThreadLocalAllocations() 458 objects_allocated_ = num_objects; in RecordThreadLocalAllocations() 471 uint64_t objects_allocated_; // The number of objects allocated. variable
|
D | bump_pointer_space.cc | 50 objects_allocated_(0), bytes_allocated_(0), in BumpPointerSpace() 60 objects_allocated_(0), bytes_allocated_(0), in BumpPointerSpace() 75 objects_allocated_.StoreRelaxed(0); in Clear() 233 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); in GetObjectsAllocated() 250 objects_allocated_.FetchAndAddSequentiallyConsistent(thread->GetThreadLocalObjectsAllocated()); in RevokeThreadLocalBuffersLocked()
|
D | zygote_space.h | 70 return objects_allocated_.LoadSequentiallyConsistent(); in GetObjectsAllocated() 91 AtomicInteger objects_allocated_; variable
|
D | bump_pointer_space.h | 152 objects_allocated_.FetchAndSubSequentiallyConsistent(objects); in RecordFree() 175 AtomicInteger objects_allocated_; // Accumulated from revoked thread local regions. variable
|
D | region_space.cc | 332 reinterpret_cast<Atomic<uint64_t>*>(&r->objects_allocated_)->FetchAndAddSequentiallyConsistent(1); in RecordAlloc() 414 << " objects_allocated=" << objects_allocated_ in Dump()
|
D | region_space-inl.h | 129 reinterpret_cast<Atomic<uint64_t>*>(&objects_allocated_)->FetchAndAddSequentiallyConsistent(1); in Alloc()
|