Home
last modified time | relevance | path

Searched refs:objects_allocated_ (Results 1 – 8 of 8) sorted by relevance

/art/runtime/gc/space/
Dzygote_space.cc32 : 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()
Dbump_pointer_space-inl.h56 objects_allocated_.StoreRelaxed(objects_allocated_.LoadRelaxed() + 1); in AllocThreadUnsafe()
83 objects_allocated_.FetchAndAddSequentiallyConsistent(1); in AllocNonvirtual()
Dregion_space.h239 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
Dbump_pointer_space.cc50 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()
Dzygote_space.h70 return objects_allocated_.LoadSequentiallyConsistent(); in GetObjectsAllocated()
91 AtomicInteger objects_allocated_; variable
Dbump_pointer_space.h152 objects_allocated_.FetchAndSubSequentiallyConsistent(objects); in RecordFree()
175 AtomicInteger objects_allocated_; // Accumulated from revoked thread local regions. variable
Dregion_space.cc332 reinterpret_cast<Atomic<uint64_t>*>(&r->objects_allocated_)->FetchAndAddSequentiallyConsistent(1); in RecordAlloc()
414 << " objects_allocated=" << objects_allocated_ in Dump()
Dregion_space-inl.h129 reinterpret_cast<Atomic<uint64_t>*>(&objects_allocated_)->FetchAndAddSequentiallyConsistent(1); in Alloc()