Lines Matching refs:RoundUp
140 Address aligned_base = RoundUp(base, MemoryChunk::kAlignment); in SetUp()
263 size_t aligned_requested = RoundUp(requested_size, MemoryChunk::kAlignment); in ReserveBlock()
299 capacity_ = RoundUp(capacity, Page::kPageSize); in SetUp()
300 capacity_executable_ = RoundUp(capacity_executable, Page::kPageSize); in SetUp()
451 RoundUp(static_cast<Address>(reservation.address()), alignment); in ReserveAlignedMemory()
550 RoundUp(header_size + requested, base::OS::CommitPageSize()); in CommitArea()
551 size_t committed_size = RoundUp(header_size + (area_end() - area_start()), in CommitArea()
659 chunk_size = RoundUp(CodePageAreaStartOffset() + reserve_area_size, in AllocateChunk()
672 size_t commit_size = RoundUp(CodePageGuardStartOffset() + commit_area_size, in AllocateChunk()
708 chunk_size = RoundUp(MemoryChunk::kObjectStartOffset + reserve_area_size, in AllocateChunk()
711 RoundUp(MemoryChunk::kObjectStartOffset + commit_area_size, in AllocateChunk()
926 return RoundUp(Page::kObjectStartOffset, base::OS::CommitPageSize()); in AllocateChunk()
1410 int rounded_new_capacity = RoundUp(new_capacity, Page::kPageSize); in AllocateChunk()