Home
last modified time | relevance | path

Searched refs:live_bytes_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/space/
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()
265 live_bytes_ = static_cast<size_t>(-1); in Clear()
361 live_bytes_ = static_cast<size_t>(-1); in SetAsFromSpace()
367 live_bytes_ = 0U; in SetAsUnevacFromSpace()
380 DCHECK_NE(live_bytes_, static_cast<size_t>(-1)); in AddLiveBytes()
381 live_bytes_ += live_bytes; in AddLiveBytes()
382 DCHECK_LE(live_bytes_, BytesAllocated()); in AddLiveBytes()
386 return live_bytes_; in LiveBytes()
392 DCHECK_NE(live_bytes_, static_cast<size_t>(-1)); in GetLivePercent()
[all …]
Dregion_space.cc127 bool is_live_percent_valid = live_bytes_ != static_cast<size_t>(-1); in ShouldBeEvacuated()
415 << " alloc_time=" << alloc_time_ << " live_bytes=" << live_bytes_ in Dump()