Home
last modified time | relevance | path

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

/external/v8/src/
Dspaces.h452 static_cast<void*>(this), live_byte_count_); in ResetLiveBytes()
454 live_byte_count_ = 0; in ResetLiveBytes()
459 static_cast<void*>(this), live_byte_count_, in IncrementLiveBytes()
461 live_byte_count_ + by); in IncrementLiveBytes()
463 live_byte_count_ += by; in IncrementLiveBytes()
464 ASSERT_LE(static_cast<unsigned>(live_byte_count_), size_); in IncrementLiveBytes()
467 ASSERT(static_cast<unsigned>(live_byte_count_) <= size_); in LiveBytes()
468 return live_byte_count_; in LiveBytes()
625 int live_byte_count_; variable
Dspaces.cc456 ASSERT(OFFSET_OF(MemoryChunk, live_byte_count_) == kLiveBytesOffset); in Initialize()