Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces.cc482 size_t committed_size = RoundUp(header_size + (area_end() - area_start()), in CommitArea() local
485 if (commit_size > committed_size) { in CommitArea()
489 Address start = address() + committed_size + guard_size; in CommitArea()
490 size_t length = commit_size - committed_size; in CommitArea()
508 } else if (commit_size < committed_size) { in CommitArea()
511 size_t length = committed_size - commit_size; in CommitArea()
512 Address start = address() + committed_size + guard_size - length; in CommitArea()