Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/cppgc/
Dcompactor.cc242 current_page_->PayloadStart() + used_bytes_in_current_page_; in RelocateObject()
250 used_bytes_in_current_page_ = 0; in RelocateObject()
263 used_bytes_in_current_page_ += size; in RelocateObject()
264 DCHECK_LE(used_bytes_in_current_page_, current_page_->PayloadSize()); in RelocateObject()
270 if (used_bytes_in_current_page_ == 0) { in FinishCompactingSpace()
291 ZapMemory(page->PayloadStart() + used_bytes_in_current_page_, in FinishCompactingPage()
292 page->PayloadSize() - used_bytes_in_current_page_); in FinishCompactingPage()
302 if (used_bytes_in_current_page_ != current_page_->PayloadSize()) { in ReturnCurrentPageToSpace()
305 current_page_->PayloadSize() - used_bytes_in_current_page_; in ReturnCurrentPageToSpace()
307 Address free_start = payload + used_bytes_in_current_page_; in ReturnCurrentPageToSpace()
[all …]