/bionic/linker/ |
D | linker_libcxx_support.cpp | 39 int posix_memalign(void**, size_t, size_t) { in posix_memalign() function
|
/bionic/libc/bionic/ |
D | malloc_common.cpp | 157 extern "C" int posix_memalign(void** memptr, size_t alignment, size_t size) { in posix_memalign() function 161 result = dispatch_table->posix_memalign(memptr, alignment, size); in posix_memalign() 163 result = Malloc(posix_memalign)(memptr, alignment, size); in posix_memalign() 350 Malloc(posix_memalign),
|
D | malloc_limit.cpp | 171 retval = dispatch_table->posix_memalign(memptr, alignment, size); in LimitPosixMemalign() 173 retval = Malloc(posix_memalign)(memptr, alignment, size); in LimitPosixMemalign()
|
D | gwp_asan_wrappers.cpp | 185 Malloc(posix_memalign),
|
D | malloc_common_dynamic.cpp | 166 if (!InitMallocFunction<MallocPosixMemalign>(impl_handler, &table->posix_memalign, prefix, in InitMallocFunctions()
|
/bionic/tests/ |
D | buffer_tests.cpp | 364 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory), pagesize, in RunSingleBufferOverreadTest() 385 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory), pagesize, in RunSrcDstBufferOverreadTest() 415 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory1), pagesize, in RunCmpBufferOverreadTest() 423 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory2), pagesize, in RunCmpBufferOverreadTest()
|
D | stdlib_test.cpp | 230 ASSERT_EQ(EINVAL, posix_memalign(&ptr, align, 256)) in TEST() 240 ASSERT_EQ(EINVAL, posix_memalign(&ptr, fail_align, 256)) in TEST() 243 ASSERT_EQ(0, posix_memalign(&ptr, align, 256)) in TEST() 256 ASSERT_EQ(0, posix_memalign(&ptr, 16, 1)) in TEST() 267 ASSERT_NE(0, posix_memalign(&ptr, 16, SIZE_MAX)); in TEST()
|
D | malloc_test.cpp | 1049 return posix_memalign(&ptr, sizeof(void *), bytes) == 0; in TEST()
|
D | string_test.cpp | 806 ASSERT_EQ(0, posix_memalign(reinterpret_cast<void**>(&buffer), 64, 64)); in TEST()
|
/bionic/libc/private/ |
D | bionic_malloc_dispatch.h | 65 MallocPosixMemalign posix_memalign; member
|
/bionic/libc/malloc_hooks/tests/ |
D | malloc_hooks_tests.cpp | 303 ASSERT_EQ(0, posix_memalign(&ptr, 32, 1024)); in TEST_F() 322 ASSERT_EQ(EINVAL, posix_memalign(&ptr, 11, 1024)); in TEST_F()
|
/bionic/tests/headers/posix/ |
D | stdlib_h.c | 110 FUNCTION(posix_memalign, int (*f)(void**, size_t, size_t)); in stdlib_h()
|
/bionic/libc/malloc_hooks/ |
D | malloc_hooks.cpp | 209 return g_dispatch->posix_memalign(memptr, alignment, size); in hooks_posix_memalign()
|
D | README.md | 18 * `posix_memalign`
|
/bionic/libc/include/ |
D | stdlib.h | 80 int posix_memalign(void** __memptr, size_t __alignment, size_t __size) __INTRODUCED_IN(17);
|
/bionic/libc/malloc_debug/ |
D | README_marshmallow_and_earlier.md | 26 * `posix_memalign`
|
D | README.md | 20 * `posix_memalign`
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 306 ASSERT_EQ(0, posix_memalign(&ptr, 64, 1123)); in PosixMemalign()
|
/bionic/libc/tools/ |
D | posix-2013.txt | 631 posix_memalign
|
/bionic/docs/ |
D | status.md | 219 * `getsid`, `malloc_usable_size`, `mlockall`/`munlockall`, `posix_memalign`, `unshare`.
|
D | native_allocator.md | 353 the allocation calls (malloc/memalign/posix_memalign/realloc/free/etc).
|
/bionic/benchmarks/linker_relocation/gen/ |
D | liblinker_reloc_bench_073.S | 1010 CALL(posix_memalign)
|
D | liblinker_reloc_bench_113.S | 2189 CALL(posix_memalign)
|
/bionic/tools/versioner/platforms/ |
D | libc.map.txt | 736 posix_memalign; # introduced=17
|
/bionic/libc/ |
D | libc.map.txt | 736 posix_memalign; # introduced=17
|