/third_party/ltp/testcases/kernel/syscalls/mremap/ |
H A D | mremap05.c | 35 * at the address range specified by new_address and new_size. 50 char *new_address; member 139 t->new_address); in test_mremap() 163 t->new_address = get_test_area(t->new_size * pagesize, 1); in setup0() 169 t->new_address = get_test_area((t->new_size + 1) * pagesize, 1) + 1; in setup1() 175 t->new_address = t->old_address; in setup2() 181 t->new_address = get_test_area(t->new_size * pagesize, 1); in setup3() 182 t->exp_ret = t->new_address; in setup3() 189 t->new_address = get_test_area(t->new_size * pagesize, 0); in setup4() 190 t->exp_ret = t->new_address; in setup4() [all...] |
/third_party/node/deps/v8/src/base/ |
H A D | page-allocator.cc | 81 void* new_address) const override { 82 if (allocator_->RemapShared(ptr_, new_address, size_)) { 83 return std::make_unique<SharedMemoryMapping>(allocator_, new_address, 125 void* PageAllocator::RemapShared(void* old_address, void* new_address, in RemapShared() argument 128 return base::OS::RemapShared(old_address, new_address, size); in RemapShared()
|
H A D | page-allocator.h | 55 void* RemapShared(void* old_address, void* new_address, size_t size);
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-macos.cc | 91 bool OS::RemapPages(const void* address, size_t size, void* new_address, in RemapPages() argument 95 IsAligned(reinterpret_cast<uintptr_t>(new_address), AllocatePageSize())); in RemapPages() 103 mach_vm_address_t target = reinterpret_cast<mach_vm_address_t>(new_address); in RemapPages() 112 CHECK_EQ(new_address, reinterpret_cast<void*>(target)); in RemapPages()
|
H A D | platform-linux.cc | 147 void* OS::RemapShared(void* old_address, void* new_address, size_t size) { in RemapShared() argument 149 mremap(old_address, 0, size, MREMAP_FIXED | MREMAP_MAYMOVE, new_address); in RemapShared() 154 DCHECK(result == new_address); in RemapShared()
|
H A D | platform.h | 327 // Remaps already-mapped memory at |new_address| with |access| permissions. 336 void* new_address, 365 void* new_address,
|
/third_party/node/deps/v8/src/heap/ |
H A D | read-only-spaces.cc | 148 Address new_address = isolate_root + offset; in CreateReadOnlySpace() local 154 reinterpret_cast<void*>(new_address), page->size()); in CreateReadOnlySpace() 156 auto shared_memory = RemapPageTo(i, new_address, new_page); in CreateReadOnlySpace() 191 Address new_address = isolate_root + CompressTagged(original_address); in GetReadOnlyHeapForIsolate() local 192 Object new_object = Object(new_address); in GetReadOnlyHeapForIsolate() 200 PointerCompressedReadOnlyArtifacts::RemapPageTo(size_t i, Address new_address, in RemapPageTo() argument 203 shared_memory_[i]->RemapTo(reinterpret_cast<void*>(new_address)); in RemapPageTo() 205 new_page = static_cast<ReadOnlyPage*>(reinterpret_cast<void*>(new_address)); in RemapPageTo()
|
H A D | memory-allocator.cc | 578 ::v8::PageAllocator::SharedMemory* shared_memory, Address new_address) { in RemapSharedPage() 579 return shared_memory->RemapTo(reinterpret_cast<void*>(new_address)); in RemapSharedPage() 577 RemapSharedPage( ::v8::PageAllocator::SharedMemory* shared_memory, Address new_address) RemapSharedPage() argument
|
H A D | memory-allocator.h | 197 ::v8::PageAllocator::SharedMemory* shared_memory, Address new_address);
|
H A D | read-only-spaces.h | 162 size_t i, Address new_address, ReadOnlyPage*& new_page);
|
/third_party/rust/crates/rustix/src/mm/ |
H A D | mmap.rs | 137 new_address: *mut c_void, in mremap_fixed() 139 backend::mm::syscalls::mremap_fixed(old_address, old_size, new_size, flags, new_address) in mremap_fixed()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | mman.rs | 198 /// Place the mapping at exactly the address specified in `new_address`. 202 /// Place the mapping at exactly the address specified in `new_address`. 454 new_address: Option<*mut c_void>, in mremap() 462 new_address.unwrap_or(std::ptr::null_mut()), in mremap() 468 new_address.unwrap_or(std::ptr::null_mut()), in mremap()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_nir.cpp | 105 nir_ssa_def *new_address = nir_ishr(b, address, nir_imm_int(b, 4 * align)); in r600_nir_lower_scratch_address_impl() local 108 nir_src_for_ssa(new_address)); in r600_nir_lower_scratch_address_impl()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-platform.h | 531 void* new_address) const = 0;
|
/third_party/node/deps/v8/include/ |
H A D | v8-platform.h | 472 void* new_address) const = 0;
|