Home
last modified time | relevance | path

Searched refs:UDC_BUF_ALIGN (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/include/zephyr/drivers/usb/
Dudc_buf.h47 #define UDC_BUF_ALIGN Z_UDC_BUF_ALIGN macro
62 static uint8_t __aligned(UDC_BUF_ALIGN) name[ROUND_UP(size, UDC_BUF_GRANULARITY)];
71 #define IS_UDC_ALIGNED(buf) IS_ALIGNED(buf, UDC_BUF_ALIGN)
77 uint8_t in_section __aligned(UDC_BUF_ALIGN) \
137 BUILD_ASSERT((UDC_BUF_GRANULARITY) % (UDC_BUF_ALIGN) == 0, \
139 static uint8_t __nocache __aligned(UDC_BUF_ALIGN) \
/Zephyr-latest/samples/subsys/usb/uac2_explicit_feedback/src/
Dmain.c40 I2S_BUFFERS_COUNT, UDC_BUF_ALIGN);
/Zephyr-latest/drivers/usb/udc/
Dudc_common.c32 b = k_heap_aligned_alloc(pool, UDC_BUF_ALIGN, *size, timeout); in udc_pool_data_alloc()