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

/art/runtime/gc/space/
H A Dregion_space.h297 objects_allocated_(0), alloc_time_(0), live_bytes_(static_cast<size_t>(-1)),
309 live_bytes_ = static_cast<size_t>(-1);
414 live_bytes_ = static_cast<size_t>(-1);
424 live_bytes_ = 0U;
440 DCHECK_NE(live_bytes_, static_cast<size_t>(-1));
443 live_bytes_ += IsLarge() ? Top() - begin_ : live_bytes;
444 DCHECK_LE(live_bytes_, BytesAllocated());
452 return live_bytes_;
503 // special value for `live_bytes_`.
504 size_t live_bytes_; // Th member in class:art::gc::space::FINAL::Region
[all...]

Completed in 19 milliseconds