Home
last modified time | relevance | path

Searched refs:new_address (Results 1 – 24 of 24) sorted by relevance

/external/ltp/testcases/kernel/syscalls/mremap/
Dmremap05.c52 char *new_address; member
141 t->new_address); in test_mremap()
165 t->new_address = get_test_area(t->new_size * pagesize, 1); in setup0()
171 t->new_address = get_test_area((t->new_size + 1) * pagesize, 1) + 1; in setup1()
177 t->new_address = t->old_address; in setup2()
183 t->new_address = get_test_area(t->new_size * pagesize, 1); in setup3()
184 t->exp_ret = t->new_address; in setup3()
191 t->new_address = get_test_area(t->new_size * pagesize, 0); in setup4()
192 t->exp_ret = t->new_address; in setup4()
194 *(t->new_address) = 0x2; in setup4()
[all …]
/external/linux-kselftest/tools/testing/selftests/x86/
Dsysret_rip.c129 void *new_address = (void *)(ip - 4096); in test_syscall_fallthrough_to() local
135 MREMAP_MAYMOVE | MREMAP_FIXED, new_address); in test_syscall_fallthrough_to()
138 err(1, "mremap to %p", new_address); in test_syscall_fallthrough_to()
140 printf("[OK]\tmremap to %p failed\n", new_address); in test_syscall_fallthrough_to()
145 if (ret != new_address) in test_syscall_fallthrough_to()
147 new_address, ret); in test_syscall_fallthrough_to()
149 current_test_page_addr = new_address; in test_syscall_fallthrough_to()
/external/grpc-grpc/src/core/ext/filters/client_channel/
Dproxy_mapper_registry.cc67 const grpc_channel_args* args, grpc_resolved_address** new_address, in grpc_proxy_mapper_list_map_address() argument
70 if (grpc_proxy_mapper_map_address(list->list[i], address, args, new_address, in grpc_proxy_mapper_list_map_address()
118 grpc_resolved_address** new_address, in grpc_proxy_mappers_map_address() argument
121 new_address, new_args); in grpc_proxy_mappers_map_address()
Dproxy_mapper.cc40 grpc_resolved_address** new_address, in grpc_proxy_mapper_map_address() argument
42 return mapper->vtable->map_address(mapper, address, args, new_address, in grpc_proxy_mapper_map_address()
Dproxy_mapper.h47 grpc_resolved_address** new_address,
69 grpc_resolved_address** new_address,
Dproxy_mapper_registry.h41 grpc_resolved_address** new_address,
Dsubchannel.cc361 grpc_resolved_address* new_address = nullptr; in grpc_subchannel_create() local
363 if (grpc_proxy_mappers_map_address(addr, args->args, &new_address, in grpc_subchannel_create()
365 GPR_ASSERT(new_address != nullptr); in grpc_subchannel_create()
367 addr = new_address; in grpc_subchannel_create()
Dhttp_proxy.cc198 grpc_resolved_address** new_address, in proxy_mapper_map_address() argument
/external/v8/src/base/
Dpage-allocator.cc80 void* new_address) const override { in RemapTo()
81 if (allocator_->RemapShared(ptr_, new_address, size_)) { in RemapTo()
82 return std::make_unique<SharedMemoryMapping>(allocator_, new_address, in RemapTo()
124 void* PageAllocator::RemapShared(void* old_address, void* new_address, in RemapShared() argument
127 return base::OS::RemapShared(old_address, new_address, size); in RemapShared()
Dpage-allocator.h53 void* RemapShared(void* old_address, void* new_address, size_t size); in NON_EXPORTED_BASE()
/external/v8/src/base/platform/
Dplatform-linux.cc147 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()
Dplatform.h290 void* new_address,
/external/v8/src/heap/
Dread-only-spaces.cc132 Address new_address = isolate_root + offset; in CreateReadOnlySpace() local
138 reinterpret_cast<void*>(new_address), page->size()); in CreateReadOnlySpace()
140 auto shared_memory = RemapPageTo(i, new_address, new_page); in CreateReadOnlySpace()
175 Address new_address = isolate_root + CompressTagged(original_address); in GetReadOnlyHeapForIsolate() local
176 Object new_object = Object(new_address); in GetReadOnlyHeapForIsolate()
184 PointerCompressedReadOnlyArtifacts::RemapPageTo(size_t i, Address new_address, in RemapPageTo() argument
187 shared_memory_[i]->RemapTo(reinterpret_cast<void*>(new_address)); in RemapPageTo()
189 new_page = static_cast<ReadOnlyPage*>(reinterpret_cast<void*>(new_address)); in RemapPageTo()
Dread-only-spaces.h155 size_t i, Address new_address, ReadOnlyPage*& new_page);
Dmemory-allocator.cc671 ::v8::PageAllocator::SharedMemory* shared_memory, Address new_address) { in RemapSharedPage() argument
672 return shared_memory->RemapTo(reinterpret_cast<void*>(new_address)); in RemapSharedPage()
Dmemory-allocator.h194 ::v8::PageAllocator::SharedMemory* shared_memory, Address new_address);
/external/libchrome/base/debug/
Dprofiler.h77 typedef void (*MoveDynamicSymbol)(const void* address, const void* new_address);
/external/u-boot/common/
Ddlmalloc.c147 void* new_address = (void*)(gAddressBase+gAllocatedSize); in wsbrk() local
150 new_address = findRegion (new_address, new_size); in wsbrk()
152 if (!new_address) in wsbrk()
156 (unsigned int)VirtualAlloc (new_address, new_size, in wsbrk()
164 assert (new_address == (void*)gAddressBase); in wsbrk()
Ddlmalloc.src1062 void* new_address = (void*)(gAddressBase+gAllocatedSize);
1065 new_address = findRegion (new_address, new_size);
1067 if (new_address == 0)
1071 (unsigned int)VirtualAlloc (new_address, new_size,
1079 assert (new_address == (void*)gAddressBase);
/external/v8/include/
Dv8-platform.h471 void* new_address) const = 0;
/external/pdfium/third_party/base/allocator/partition_allocator/
Dpartition_alloc.cc150 void* new_address, in ReallocObserverHookIfEnabled() argument
160 allocation_hook(new_address, size, type_name); in ReallocObserverHookIfEnabled()
Dpartition_alloc.h273 void* new_address,
/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_nir.cpp364 nir_ssa_def *new_address = nir_ishr(b, address, nir_imm_int(b, 4 * align)); in r600_nir_lower_scratch_address_impl() local
367 nir_src_for_ssa(new_address)); in r600_nir_lower_scratch_address_impl()
/external/google-breakpad/src/third_party/lss/
Dlinux_syscall_support.h3798 void *new_address, *rc; in LSS_NAME() local
3800 new_address = va_arg(ap, void *); in LSS_NAME()
3802 flags, new_address); in LSS_NAME()