Home
last modified time | relevance | path

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

/Zephyr-latest/include/zephyr/drivers/usb/
Dudc_buf.h57 #define UDC_BUF_ALIGN Z_UDC_BUF_ALIGN macro
72 static uint8_t Z_UDC_BUF_SECTION __aligned(UDC_BUF_ALIGN) \
82 #define IS_UDC_ALIGNED(buf) IS_ALIGNED(buf, UDC_BUF_ALIGN)
88 uint8_t in_section __aligned(UDC_BUF_ALIGN) \
148 BUILD_ASSERT((UDC_BUF_GRANULARITY) % (UDC_BUF_ALIGN) == 0, \
150 static uint8_t Z_UDC_BUF_SECTION __aligned(UDC_BUF_ALIGN) \
/Zephyr-latest/samples/subsys/usb/uac2_explicit_feedback/src/
Dmain.c40 I2S_BUFFERS_COUNT, UDC_BUF_ALIGN);
/Zephyr-latest/samples/bluetooth/bap_broadcast_source/src/
Dmain.c310 K_MEM_SLAB_DEFINE_STATIC(usb_in_buf_pool, USB_MAX_STEREO_FRAME_SIZE, 3, 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()