Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces.cc552 size_t committed_size = RoundUp(header_size + (area_end() - area_start()), in CommitArea() local
555 if (commit_size > committed_size) { in CommitArea()
559 Address start = address() + committed_size + guard_size; in CommitArea()
560 size_t length = commit_size - committed_size; in CommitArea()
577 } else if (commit_size < committed_size) { in CommitArea()
580 size_t length = committed_size - commit_size; in CommitArea()
581 Address start = address() + committed_size + guard_size - length; in CommitArea()