Searched refs:old_address (Results 1 – 12 of 12) sorted by relevance
/external/ltp/testcases/kernel/syscalls/mremap/ |
D | mremap05.c | 51 char *old_address; member 140 t->ret = mremap(t->old_address, t->old_size, t->new_size, t->flags, in test_mremap() 164 t->old_address = get_test_area(t->old_size * pagesize, 0); in setup0() 170 t->old_address = get_test_area(t->old_size * pagesize, 0); in setup1() 176 t->old_address = get_test_area(t->old_size * pagesize, 0); in setup2() 177 t->new_address = t->old_address; in setup2() 182 t->old_address = get_test_area(t->old_size * pagesize, 0); in setup3() 185 *(t->old_address) = 0x1; in setup3() 190 t->old_address = get_test_area(t->old_size * pagesize, 0); in setup4() 193 *(t->old_address) = 0x1; in setup4() [all …]
|
/external/v8/src/base/platform/ |
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()
|
D | platform.h | 289 V8_WARN_UNUSED_RESULT static void* RemapShared(void* old_address,
|
/external/v8/src/base/ |
D | page-allocator.cc | 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()
|
D | page-allocator.h | 53 void* RemapShared(void* old_address, void* new_address, size_t size); in NON_EXPORTED_BASE()
|
/external/v8/src/heap/ |
D | heap-inl.h | 467 bool Heap::ShouldBePromoted(Address old_address) { in ShouldBePromoted() argument 468 Page* page = Page::FromAddress(old_address); in ShouldBePromoted() 471 (!page->ContainsLimit(age_mark) || old_address < age_mark); in ShouldBePromoted()
|
D | heap.h | 721 inline bool ShouldBePromoted(Address old_address);
|
/external/pdfium/third_party/base/allocator/partition_allocator/ |
D | partition_alloc.cc | 149 void PartitionAllocHooks::ReallocObserverHookIfEnabled(void* old_address, in ReallocObserverHookIfEnabled() argument 159 free_hook(old_address); in ReallocObserverHookIfEnabled()
|
D | partition_alloc.h | 272 static void ReallocObserverHookIfEnabled(void* old_address,
|
/external/libchrome/base/memory/ |
D | shared_memory_unittest.cc | 579 void* old_address = memory.memory(); in TEST_P() local 583 EXPECT_EQ(old_address, memory.memory()); in TEST_P()
|
/external/google-breakpad/src/third_party/lss/ |
D | linux_syscall_support.h | 3795 LSS_INLINE void *LSS_NAME(mremap)(void *old_address, size_t old_size, in LSS_NAME() 3801 rc = LSS_NAME(_mremap)(old_address, old_size, new_size, in LSS_NAME()
|
/external/mesa3d/docs/relnotes/ |
D | 20.0.0.rst | 1936 - iris: Drop 'old_address' parameter from iris_rebind_buffer
|