Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces.cc505 size_t committed_size = RoundUp(header_size + (area_end() - area_start()), in CommitArea() local
508 if (commit_size > committed_size) { in CommitArea()
512 Address start = address() + committed_size + guard_size; in CommitArea()
513 size_t length = commit_size - committed_size; in CommitArea()
531 } else if (commit_size < committed_size) { in CommitArea()
534 size_t length = committed_size - commit_size; in CommitArea()
535 Address start = address() + committed_size + guard_size - length; in CommitArea()