• Home
  • Raw
  • Download

Lines Matching refs:commit_size

205                                      const size_t commit_size,  in AllocateRawMemory()  argument
209 CHECK_LE(commit_size, in AllocateRawMemory()
220 code_range_, current.start, commit_size, *allocated)) { in AllocateRawMemory()
475 size_t reserve_size, size_t commit_size, size_t alignment, in AllocateAlignedMemory() argument
477 DCHECK(commit_size <= reserve_size); in AllocateAlignedMemory()
483 if (!CommitExecutableMemory(&reservation, base, commit_size, in AllocateAlignedMemory()
488 if (reservation.Commit(base, commit_size, false)) { in AllocateAlignedMemory()
489 UpdateAllocatedSpaceLimits(base, base + commit_size); in AllocateAlignedMemory()
566 size_t commit_size = in CommitArea() local
571 if (commit_size > committed_size) { in CommitArea()
573 DCHECK(commit_size <= size() - 2 * guard_size); in CommitArea()
576 size_t length = commit_size - committed_size; in CommitArea()
593 } else if (commit_size < committed_size) { in CommitArea()
594 DCHECK(commit_size > 0); in CommitArea()
596 size_t length = committed_size - commit_size; in CommitArea()
708 size_t commit_size = RoundUp(CodePageGuardStartOffset() + commit_area_size, in AllocateChunk() local
720 code_range()->AllocateRawMemory(chunk_size, commit_size, &chunk_size); in AllocateChunk()
728 base = AllocateAlignedMemory(chunk_size, commit_size, in AllocateChunk()
746 size_t commit_size = in AllocateChunk() local
750 AllocateAlignedMemory(chunk_size, commit_size, MemoryChunk::kAlignment, in AllocateChunk()
1077 Address start, size_t commit_size, in AllocateChunk() argument
1087 size_t body_size = commit_size - CodePageGuardStartOffset(); in AllocateChunk()
1092 commit_size - in AllocateChunk()