HomeSort by relevance Sort by last modified time
    Searched refs:next_part (Results 1 - 2 of 2) sorted by null

  /art/compiler/utils/
swap_space.cc 149 size_t next_part = std::max(RoundUp(min_size, kPageSize), RoundUp(kMininumMapSize, kPageSize)); local
150 int result = TEMP_FAILURE_RETRY(ftruncate64(fd_, size_ + next_part));
155 mmap(nullptr, next_part, PROT_READ | PROT_WRITE, MAP_SHARED, fd_, size_));
158 LOG(ERROR) << "Current size: " << size_ << " requested: " << next_part << "/" << min_size;
164 size_ += next_part;
165 SpaceChunk new_chunk = {ptr, next_part};
  /external/python/apitools/apitools/base/protorpclite/
messages.py     [all...]

Completed in 257 milliseconds