Searched defs:page_aligned_byte_count (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dmem_map.cc260 size_t page_aligned_byte_count,
265 void* actual = mmap(ptr, page_aligned_byte_count, prot, flags, fd, offset);
269 if (reinterpret_cast<uintptr_t>(actual) + page_aligned_byte_count >= 4 * GB) {
270 munmap(actual, page_aligned_byte_count);
292 size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize); local
313 (page_aligned_byte_count < rlimit_fsize.rlim_cur);
322 fd.reset(ashmem_create_region(debug_friendly_name.c_str(), page_aligned_byte_count));
334 page_aligned_byte_count,
349 page_aligned_byte_count,
358 if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_ms
259 TryMemMapLow4GB(void* ptr, size_t page_aligned_byte_count, int prot, int flags, int fd, off_t offset) argument
369 const size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize); local
409 size_t page_aligned_byte_count = RoundUp(byte_count + page_offset, kPageSize); local
[all...]

Completed in 72 milliseconds