Home
last modified time | relevance | path

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

/Zephyr-4.2.1/tests/bluetooth/host/conn/mocks/
Dkernel.h33 FAKE(k_heap_aligned_alloc) \
62 DECLARE_FAKE_VALUE_FUNC(void *, k_heap_aligned_alloc, struct k_heap *,
Dkernel.c38 DEFINE_FAKE_VALUE_FUNC(void *, k_heap_aligned_alloc, struct k_heap *,
/Zephyr-4.2.1/subsys/llext/
Dllext_priv.h90 return k_heap_aligned_alloc(&llext_data_heap, align, bytes, K_NO_WAIT); in llext_aligned_alloc_data()
108 return k_heap_aligned_alloc(&llext_instr_heap, align, bytes, K_NO_WAIT); in llext_aligned_alloc_instr()
/Zephyr-4.2.1/tests/subsys/ipc/ipc_sessions/src/
Ddata_queue.c25 struct data_queue_format *buffer = k_heap_aligned_alloc( in data_queue_put()
/Zephyr-4.2.1/tests/kernel/mem_heap/k_heap_api/src/
Dtest_kheap_api.c463 p = k_heap_aligned_alloc(&k_heap_test, 16, 128, K_NO_WAIT); in ZTEST()
469 p = k_heap_aligned_alloc(&k_heap_test, 8, HEAP_SIZE * 2, K_NO_WAIT); in ZTEST()
474 p = k_heap_aligned_alloc(&k_heap_test, 3, 64, K_NO_WAIT); in ZTEST()
/Zephyr-4.2.1/kernel/
Dkheap.c131 void *k_heap_aligned_alloc(struct k_heap *heap, size_t align, size_t bytes, in k_heap_aligned_alloc() function
/Zephyr-4.2.1/modules/nrf_wifi/os/
Dshim.c64 return k_heap_aligned_alloc(wifi_ctrl_pool, WORD_SIZE, size_aligned, K_FOREVER); in zep_shim_mem_alloc()
71 return k_heap_aligned_alloc(wifi_data_pool, WORD_SIZE, size_aligned, K_FOREVER); in zep_shim_data_mem_alloc()
202 lock = k_heap_aligned_alloc(wifi_ctrl_pool, WORD_SIZE, sizeof(*lock), K_FOREVER); in zep_shim_spinlock_alloc()
/Zephyr-4.2.1/subsys/tracing/sysview/
DSYSVIEW_Zephyr.txt85 79 k_heap_aligned_alloc heap=%I
/Zephyr-4.2.1/drivers/display/
Ddisplay_mcux_elcdif.c279 k_heap_aligned_alloc(&display_heap, 64, dev_data->fb_bytes, K_FOREVER); in mcux_elcdif_set_pixel_format()
/Zephyr-4.2.1/drivers/video/
Dvideo_common.c55 return k_heap_aligned_alloc(&video_buffer_pool, align, bytes, timeout); in video_buffer_k_heap_aligned_alloc()
Dvideo_stm32_venc.c68 k_heap_aligned_alloc(&venc_pool, ALIGNMENT_INCR, size, K_NO_WAIT)
/Zephyr-4.2.1/lib/net_buf/
Dbuf.c126 b = k_heap_aligned_alloc(pool, in mem_pool_data_alloc()
/Zephyr-4.2.1/drivers/usb/udc/
Dudc_common.c32 b = k_heap_aligned_alloc(pool, UDC_BUF_ALIGN, *size, timeout); in udc_pool_data_alloc()
/Zephyr-4.2.1/include/zephyr/
Dkernel.h5955 void *k_heap_aligned_alloc(struct k_heap *h, size_t align, size_t bytes,
/Zephyr-4.2.1/doc/releases/
Drelease-notes-3.2.rst1830 * :github:`50611` - k_heap_aligned_alloc does not handle a timeout of K_FOREVER correctly