Lines Matching full:actual
207 uintptr_t actual = reinterpret_cast<uintptr_t>(actual_ptr);
234 actual, expected);
246 void* actual = mmap(ptr, page_aligned_byte_count, prot, flags, fd, 0);
247 if (actual != MAP_FAILED) {
250 if (reinterpret_cast<uintptr_t>(actual) + page_aligned_byte_count >= 4 * GB) {
251 munmap(actual, page_aligned_byte_count);
252 actual = MAP_FAILED;
255 return actual;
329 void* actual = MAP_FAILED;
359 actual = TryMemMapLow4GB(reinterpret_cast<void*>(ptr), page_aligned_byte_count, prot, flags,
361 if (actual != MAP_FAILED) {
362 next_mem_pos_ = reinterpret_cast<uintptr_t>(actual) + page_aligned_byte_count;
395 actual = TryMemMapLow4GB(reinterpret_cast<void*>(ptr), page_aligned_byte_count, prot, flags,
397 if (actual != MAP_FAILED) {
406 if (actual == MAP_FAILED) {
411 actual = mmap(expected_ptr, page_aligned_byte_count, prot, flags, fd.get(), 0);
422 void* actual = mmap(expected_ptr, page_aligned_byte_count, prot, flags, fd.get(), 0);
426 if (actual == MAP_FAILED) {
435 if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_msg)) {
438 return new MemMap(name, reinterpret_cast<uint8_t*>(actual), byte_count, actual,
484 uint8_t* actual = reinterpret_cast<uint8_t*>(mmap(page_aligned_expected,
490 if (actual == MAP_FAILED) {
503 if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_msg)) {
506 return new MemMap(filename, actual + page_offset, byte_count, actual, page_aligned_byte_count,
610 uint8_t* actual = reinterpret_cast<uint8_t*>(mmap(tail_base_begin, tail_base_size, tail_prot,
612 if (actual == MAP_FAILED) {
619 return new MemMap(tail_name, actual, tail_size, actual, tail_base_size, tail_prot, false);