Home
last modified time | relevance | path

Searched refs:posix_memalign (Results 1 – 25 of 29) sorted by relevance

12

/bionic/linker/
Dlinker_libcxx_support.cpp39 int posix_memalign(void**, size_t, size_t) { in posix_memalign() function
/bionic/libc/bionic/
Dmalloc_common.cpp172 extern "C" int posix_memalign(void** memptr, size_t alignment, size_t size) { in posix_memalign() function
176 result = dispatch_table->posix_memalign(memptr, alignment, size); in posix_memalign()
178 result = Malloc(posix_memalign)(memptr, alignment, size); in posix_memalign()
380 Malloc(posix_memalign),
Dmalloc_limit.cpp172 retval = dispatch_table->posix_memalign(memptr, alignment, size); in LimitPosixMemalign()
174 retval = Malloc(posix_memalign)(memptr, alignment, size); in LimitPosixMemalign()
Dgwp_asan_wrappers.cpp159 Malloc(posix_memalign),
Dmalloc_common_dynamic.cpp166 if (!InitMallocFunction<MallocPosixMemalign>(impl_handler, &table->posix_memalign, prefix, in InitMallocFunctions()
/bionic/tests/
Dbuffer_tests.cpp364 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()
Dstdlib_test.cpp232 ASSERT_EQ(EINVAL, posix_memalign(&ptr, align, 256)) in TEST()
242 ASSERT_EQ(EINVAL, posix_memalign(&ptr, fail_align, 256)) in TEST()
245 ASSERT_EQ(0, posix_memalign(&ptr, align, 256)) in TEST()
258 ASSERT_EQ(0, posix_memalign(&ptr, 16, 1)) in TEST()
269 ASSERT_NE(0, posix_memalign(&ptr, 16, SIZE_MAX)); in TEST()
Dmalloc_test.cpp1202 return posix_memalign(&ptr, sizeof(void *), bytes) == 0; in TEST()
1646 if (posix_memalign(&ptr, 64, size) == 0) { in TEST()
1676 if (posix_memalign(&ptr, 64, size) == 0) { in TEST()
Dstring_test.cpp813 ASSERT_EQ(0, posix_memalign(reinterpret_cast<void**>(&buffer), 64, 64)); in TEST()
/bionic/libc/private/
Dbionic_malloc_dispatch.h65 MallocPosixMemalign posix_memalign; member
/bionic/libc/malloc_hooks/tests/
Dmalloc_hooks_tests.cpp305 ASSERT_EQ(0, posix_memalign(&ptr, 32, 1024)); in TEST_F()
324 ASSERT_EQ(EINVAL, posix_memalign(&ptr, 11, 1024)); in TEST_F()
/bionic/tests/headers/posix/
Dstdlib_h.c110 FUNCTION(posix_memalign, int (*f)(void**, size_t, size_t)); in stdlib_h()
/bionic/libc/malloc_hooks/
Dmalloc_hooks.cpp209 return g_dispatch->posix_memalign(memptr, alignment, size); in hooks_posix_memalign()
DREADME.md18 * `posix_memalign`
/bionic/libc/include/
Dstdlib.h76 int posix_memalign(void* _Nullable * _Nullable __memptr, size_t __alignment, size_t __size);
/bionic/libc/malloc_debug/
DREADME_marshmallow_and_earlier.md26 * `posix_memalign`
Dmalloc_debug.cpp1028 return g_dispatch->posix_memalign(memptr, alignment, size); in debug_posix_memalign()
DREADME.md20 * `posix_memalign`
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_system_tests.cpp536 ASSERT_EQ(0, posix_memalign(&ptr, 64, 1123)); in PosixMemalign()
/bionic/libc/tools/
Dposix-2013.txt631 posix_memalign
/bionic/docs/
Dstatus.md276 * `getsid`, `malloc_usable_size`, `mlockall`/`munlockall`, `posix_memalign`, `unshare`.
Dnative_allocator.md353 the allocation calls (malloc/memalign/posix_memalign/realloc/free/etc).
/bionic/benchmarks/linker_relocation/gen/
Dliblinker_reloc_bench_073.S1010 CALL(posix_memalign)
/bionic/libc/
Dlibc.map.txt736 posix_memalign; # introduced=17
/bionic/tools/versioner/platforms/
Dlibc.map.txt736 posix_memalign; # introduced=17

12