Searched refs:live_bytes_ (Results 1 – 2 of 2) sorted by relevance
379 live_bytes_(static_cast<size_t>(-1)), in Region()400 live_bytes_ = static_cast<size_t>(-1); in Init()467 live_bytes_ = 0; in ZeroLiveBytes()525 live_bytes_ = static_cast<size_t>(-1); in SetAsFromSpace()547 DCHECK_NE(live_bytes_, static_cast<size_t>(-1)); in AddLiveBytes()549 live_bytes_ += IsLarge() ? Top() - begin_ : live_bytes; in AddLiveBytes()550 DCHECK_LE(live_bytes_, BytesAllocated()); in AddLiveBytes()558 return live_bytes_; in LiveBytes()603 size_t live_bytes_; // The live bytes. Used to compute the live percent. variable
209 live_bytes_ = 0; in SetAsUnevacFromSpace()234 DCHECK_EQ(live_bytes_, static_cast<size_t>(-1)); in ShouldBeEvacuated()268 bool is_live_percent_valid = (live_bytes_ != static_cast<size_t>(-1)); in ShouldBeEvacuated()272 DCHECK_NE(live_bytes_, static_cast<size_t>(-1)); in ShouldBeEvacuated()273 DCHECK_LE(live_bytes_, BytesAllocated()); in ShouldBeEvacuated()275 DCHECK_LE(live_bytes_, bytes_allocated); in ShouldBeEvacuated()280 result = (live_bytes_ * 100U < kEvacuateLivePercentThreshold * bytes_allocated); in ShouldBeEvacuated()283 result = (live_bytes_ == 0U); in ShouldBeEvacuated()912 << " live_bytes=" << live_bytes_; in Dump()914 if (live_bytes_ != static_cast<size_t>(-1)) { in Dump()[all …]