Searched defs:capacity_ (Results 1 - 4 of 4) sorted by relevance

/art/runtime/gc/accounting/
H A Datomic_stack.h87 return AtomicPushBackInternal(value, capacity_);
127 for (size_t i = 0; i < capacity_; ++i) {
185 return capacity_;
190 capacity_ = new_capacity;
227 capacity_(capacity),
252 mem_map_.reset(MemMap::MapAnonymous(name_.c_str(), nullptr, capacity_ * sizeof(begin_[0]),
272 // Current maximum which we can push back to, must be <= capacity_.
275 size_t capacity_; member in class:art::gc::accounting::AtomicStack
/art/runtime/
H A Dindirect_reference_table.h189 : table_(table), i_(i), capacity_(capacity) {
190 // capacity_ is used in some target; has warning with unused attribute.
191 UNUSED(capacity_);
211 const size_t capacity_; member in class:art::IrtIterator
/art/runtime/gc/allocator/
H A Drosalloc.h611 DCHECK_LT(addr, base_ + capacity_);
618 DCHECK(base_ <= addr && addr < reinterpret_cast<uint8_t*>(base_) + capacity_);
703 // The maximum footprint. The address, base_ + capacity_, indicates
705 size_t capacity_; member in class:art::gc::allocator::RosAlloc
777 uint8_t* End() { return base_ + capacity_; }
914 DCHECK_LT(idx, capacity_ / kPageSize);
/art/runtime/gc/
H A Dheap.h1210 size_t capacity_; member in class:art::gc::Heap

Completed in 2349 milliseconds