Searched refs:top_ (Results 1 – 3 of 3) sorted by relevance
/art/runtime/gc/space/ |
D | region_space.h | 237 begin_(nullptr), top_(nullptr), end_(nullptr), in Region() 243 : idx_(idx), begin_(begin), top_(begin), end_(end), in Region() 260 top_ = begin_; in Clear() 283 DCHECK_EQ(begin_, top_); in IsFree() 324 DCHECK_LT(begin_ + 1 * MB, top_); in IsLarge() 333 DCHECK_EQ(begin_, top_); in IsLargeTail() 403 DCHECK_LT(begin_ + kRegionSize, top_); in BytesAllocated() 404 return static_cast<size_t>(top_ - begin_); in BytesAllocated() 406 DCHECK_EQ(begin_, top_); in BytesAllocated() 410 DCHECK_LE(begin_, top_); in BytesAllocated() [all …]
|
D | region_space-inl.h | 119 Atomic<uint8_t*>* atomic_top = reinterpret_cast<Atomic<uint8_t*>*>(&top_); in Alloc()
|
D | region_space.cc | 411 …Region[" << idx_ << "]=" << reinterpret_cast<void*>(begin_) << "-" << reinterpret_cast<void*>(top_) in Dump()
|