Home
last modified time | relevance | path

Searched refs:k_heap_aligned_alloc (Results 1 – 11 of 11) sorted by relevance

/Zephyr-latest/subsys/llext/
Dllext_priv.h36 return k_heap_aligned_alloc(&llext_heap, align, bytes, K_NO_WAIT); in llext_aligned_alloc()
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/src/
Ddata_queue.c25 struct data_queue_format *buffer = k_heap_aligned_alloc( in data_queue_put()
/Zephyr-latest/kernel/
Dkheap.c66 void *k_heap_aligned_alloc(struct k_heap *heap, size_t align, size_t bytes, in k_heap_aligned_alloc() function
113 void *ret = k_heap_aligned_alloc(heap, sizeof(void *), bytes, timeout); in k_heap_alloc()
Dmempool.c29 mem = k_heap_aligned_alloc(heap, __align, size, K_NO_WAIT); in z_heap_aligned_alloc()
/Zephyr-latest/drivers/video/
Dvideo_common.c22 k_heap_aligned_alloc(&video_buffer_pool, align, size, timeout);
/Zephyr-latest/modules/nrf_wifi/os/
Dshim.c46 return k_heap_aligned_alloc(&wifi_drv_ctrl_mem_pool, WORD_SIZE, size_aligned, K_FOREVER); in zep_shim_mem_alloc()
53 return k_heap_aligned_alloc(&wifi_drv_data_mem_pool, WORD_SIZE, size_aligned, K_FOREVER); in zep_shim_data_mem_alloc()
/Zephyr-latest/subsys/tracing/sysview/
DSYSVIEW_Zephyr.txt87 79 k_heap_aligned_alloc heap=%I
/Zephyr-latest/drivers/display/
Ddisplay_mcux_elcdif.c257 k_heap_aligned_alloc(&display_heap, 64, dev_data->fb_bytes, K_FOREVER); in mcux_elcdif_set_pixel_format()
/Zephyr-latest/drivers/usb/udc/
Dudc_common.c32 b = k_heap_aligned_alloc(pool, UDC_BUF_ALIGN, *size, timeout); in udc_pool_data_alloc()
/Zephyr-latest/include/zephyr/
Dkernel.h5611 void *k_heap_aligned_alloc(struct k_heap *h, size_t align, size_t bytes,
/Zephyr-latest/doc/releases/
Drelease-notes-3.2.rst1830 * :github:`50611` - k_heap_aligned_alloc does not handle a timeout of K_FOREVER correctly