Home
last modified time | relevance | path

Searched refs:aligned_alloc (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/lib/cpp/minimal/
Dcpp_new.cpp45 return aligned_alloc(static_cast<size_t>(al), size); in operator new()
50 return aligned_alloc(static_cast<size_t>(al), size); in operator new[]()
56 return aligned_alloc(static_cast<size_t>(al), size); in operator new()
62 return aligned_alloc(static_cast<size_t>(al), size); in operator new[]()
/Zephyr-latest/kernel/
Dkheap.c73 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_heap, aligned_alloc, heap, timeout); in k_heap_aligned_alloc()
90 SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(k_heap, aligned_alloc, heap, timeout); in k_heap_aligned_alloc()
102 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_heap, aligned_alloc, heap, timeout, ret); in k_heap_aligned_alloc()
/Zephyr-latest/lib/libc/common/source/stdlib/
Dmalloc.c156 void *aligned_alloc(size_t alignment, size_t size) in aligned_alloc() function
189 return aligned_alloc(alignment, size); in memalign()
/Zephyr-latest/lib/libc/minimal/include/
Dstdlib.h28 void *aligned_alloc(size_t alignment, size_t size); /* From C11 */
/Zephyr-latest/doc/contribute/coding_guidelines/
Dindex.rst1330 aligned_alloc(),ISO/IEC 9899:2011
/Zephyr-latest/doc/releases/
Drelease-notes-3.3.rst2038 * Added C11 ``aligned_alloc`` support to the minimal libc.