Home
last modified time | relevance | path

Searched refs:aligned_alloc (Results 1 - 25 of 32) sorted by relevance

12

/third_party/musl/porting/linux/user/src/hook/
H A Dmusl_preinit_common.c27 .aligned_alloc = MuslMalloc(aligned_alloc),
39 .aligned_alloc = MuslMalloc(aligned_alloc),
H A Dmalloc_common.c52 void* aligned_alloc(size_t align, size_t len) in aligned_alloc() function
58 return dispatch_table->aligned_alloc(align, len); in aligned_alloc()
61 return MuslMalloc(aligned_alloc)(align, len); in aligned_alloc()
64 return MuslMalloc(aligned_alloc)(align, len); in aligned_alloc()
66 return dispatch_table->aligned_alloc(align, len); in aligned_alloc()
68 return MuslMalloc(aligned_alloc)(align, len); in aligned_alloc()
H A Dmusl_malloc_dispatch.h47 MallocAlignedAllocType aligned_alloc; member
H A Dmusl_preinit.c51 .aligned_alloc = MuslMalloc(aligned_alloc),
279 snprintf(symbol, sizeof(symbol), "%s_%s", prefix, "aligned_alloc"); in init_aligned_alloc_function()
339 if (!init_aligned_alloc_function(shared_library_handler, &table->aligned_alloc, prefix)) { in init_hook_functions()
/third_party/musl/src/hook/linux/
H A Dmusl_preinit_common.c42 .aligned_alloc = MuslMalloc(aligned_alloc),
54 .aligned_alloc = MuslMalloc(aligned_alloc),
H A Dmalloc_common.c80 void* aligned_alloc(size_t align, size_t len) in aligned_alloc() function
86 return dispatch_table->aligned_alloc(align, len); in aligned_alloc()
89 return MuslMalloc(aligned_alloc)(align, len); in aligned_alloc()
92 return MuslMalloc(aligned_alloc)(align, len); in aligned_alloc()
94 return dispatch_table->aligned_alloc(align, len); in aligned_alloc()
96 return MuslMalloc(aligned_alloc)(align, len); in aligned_alloc()
H A Dmusl_malloc_dispatch.h69 MallocAlignedAllocType aligned_alloc; member
H A Dmusl_preinit.c66 .aligned_alloc = MuslMalloc(aligned_alloc),
294 snprintf(symbol, sizeof(symbol), "%s_%s", prefix, "aligned_alloc"); in init_aligned_alloc_function()
353 if (!init_aligned_alloc_function(shared_library_handler, &table->aligned_alloc, prefix)) { in init_hook_functions()
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dalloc-align.c24 * The aligned_alloc function allocates space for an object whose alignment is
30 * The aligned_alloc function returns either a null pointer or a pointer to the
33 void *aligned_alloc(size_t alignment, size_t size) __alloc_align(1);
/third_party/musl/libc-test/src/functionalext/supplement/malloc/
H A Daligned_alloc.c27 void *p = aligned_alloc(pagesize, 1024 * sizeof(int)); in aligned_alloc_0100()
29 t_error("%s aligned_alloc failed\n", __func__); in aligned_alloc_0100()
/third_party/musl/src/malloc/
H A Dposix_memalign.c7 void *mem = aligned_alloc(align, len); in posix_memalign()
H A Dmemalign.c96 return aligned_alloc(align, len); in memalign()
/third_party/gn/src/util/
H A Daligned_alloc.h23 // Note that aligned_alloc() is only available at runtime starting from
44 // The implementation uses std::aligned_alloc() when it is available,
85 return std::aligned_alloc(ALIGNMENT, size); in Alloc()
103 // Allocation came from std::aligned_alloc() in Free()
/third_party/musl/src/malloc/oldmalloc/
H A Daligned_alloc.c9 void *aligned_alloc(size_t align, size_t len) in aligned_alloc() function
/third_party/musl/porting/liteos_a/user_debug/src/malloc/oldmalloc/
H A Daligned_alloc.c7 void *aligned_alloc(size_t align, size_t len) in aligned_alloc() function
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_memorypool.cpp147 void *retval = aligned_alloc(align, size); in allocate()
/third_party/musl/src/malloc/mallocng/
H A Daligned_alloc.c12 void *aligned_alloc(size_t align, size_t len) in __libc_aligned_alloc()
/third_party/musl/porting/linux/user/src/malloc/mallocng/
H A Daligned_alloc.c12 void *aligned_alloc(size_t align, size_t len) in __libc_aligned_alloc()
/third_party/node/test/cctest/
H A Dtest_crypto_clienthello.cc57 alloc_base = static_cast<uint8_t*>(aligned_alloc(page, 2 * page)); in OverrunGuardedBuffer()
/third_party/musl/libc-test/src/regression/
H A Dflockfile-list.c44 void *aligned_alloc(size_t a, size_t n) in aligned_alloc() function
46 t_fatal("aligned_alloc is unsupported\n"); in aligned_alloc()
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstdlib.h42 void *aligned_alloc(size_t, size_t);
/third_party/musl/porting/liteos_m/user/include/
H A Dstdlib.h42 void *aligned_alloc(size_t, size_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstdlib.h44 void *aligned_alloc(size_t, size_t);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstdlib.h42 void *aligned_alloc(size_t, size_t);
/third_party/musl/porting/linux/user/include/
H A Dstdlib.h44 void *aligned_alloc(size_t, size_t);

Completed in 10 milliseconds

12