Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces-inl.h231 static_cast<void*>(this), live_byte_count_); in ResetLiveBytes()
233 live_byte_count_ = 0; in ResetLiveBytes()
240 static_cast<void*>(this), by, live_byte_count_, live_byte_count_ + by); in IncrementLiveBytes()
242 live_byte_count_ += by; in IncrementLiveBytes()
243 DCHECK_GE(live_byte_count_, 0); in IncrementLiveBytes()
244 DCHECK_LE(static_cast<size_t>(live_byte_count_), size_); in IncrementLiveBytes()
Dspaces.h423 DCHECK_LE(static_cast<unsigned>(live_byte_count_), size_); in LiveBytes()
424 return live_byte_count_; in LiveBytes()
430 live_byte_count_ = live_bytes; in SetLiveBytes()
610 int live_byte_count_; variable