• Home
  • Raw
  • Download

Lines Matching refs:commit_size

197                                      const size_t commit_size,  in AllocateRawMemory()  argument
201 CHECK_LE(commit_size, in AllocateRawMemory()
212 code_range_, current.start, commit_size, *allocated)) { in AllocateRawMemory()
384 size_t reserve_size, size_t commit_size, size_t alignment, in AllocateAlignedMemory() argument
386 DCHECK(commit_size <= reserve_size); in AllocateAlignedMemory()
392 if (!CommitExecutableMemory(&reservation, base, commit_size, in AllocateAlignedMemory()
397 if (reservation.Commit(base, commit_size, false)) { in AllocateAlignedMemory()
398 UpdateAllocatedSpaceLimits(base, base + commit_size); in AllocateAlignedMemory()
503 size_t commit_size = in CommitArea() local
508 if (commit_size > committed_size) { in CommitArea()
510 DCHECK(commit_size <= size() - 2 * guard_size); in CommitArea()
513 size_t length = commit_size - committed_size; in CommitArea()
531 } else if (commit_size < committed_size) { in CommitArea()
532 DCHECK(commit_size > 0); in CommitArea()
534 size_t length = committed_size - commit_size; in CommitArea()
628 size_t commit_size = RoundUp(CodePageGuardStartOffset() + commit_area_size, in AllocateChunk() local
640 base = isolate_->code_range()->AllocateRawMemory(chunk_size, commit_size, in AllocateChunk()
649 base = AllocateAlignedMemory(chunk_size, commit_size, in AllocateChunk()
667 size_t commit_size = in AllocateChunk() local
671 AllocateAlignedMemory(chunk_size, commit_size, MemoryChunk::kAlignment, in AllocateChunk()
893 Address start, size_t commit_size, in AllocateChunk() argument
903 size_t body_size = commit_size - CodePageGuardStartOffset(); in AllocateChunk()
908 commit_size - in AllocateChunk()