Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dmark-compact.h307 chunk->live_byte_count_.fetch_add(by, std::memory_order_relaxed); in IncrementLiveBytes()
311 return chunk->live_byte_count_.load(std::memory_order_relaxed); in live_bytes()
315 chunk->live_byte_count_.store(value, std::memory_order_relaxed); in SetLiveBytes()
330 chunk->live_byte_count_.fetch_add(by); in IncrementLiveBytes()
344 chunk->live_byte_count_.fetch_add(by, std::memory_order_relaxed); in IncrementLiveBytes()
348 return chunk->live_byte_count_.load(std::memory_order_relaxed); in live_bytes()
352 chunk->live_byte_count_.store(value, std::memory_order_relaxed); in SetLiveBytes()
Dmemory-chunk.h264 std::atomic<intptr_t> live_byte_count_; variable
Dmemory-chunk.cc398 reinterpret_cast<Address>(&chunk->live_byte_count_) - chunk->address(), in ValidateOffsets()