Home
last modified time | relevance | path

Searched refs:uxItemSize (Results 1 – 2 of 2) sorted by relevance

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1471 UBaseType_t uxItemSize, in xQueueCreateStatic() argument
1478 configASSERT(uxItemSize >= sizeof(UINT)); in xQueueCreateStatic()
1488 TX_MEMSET(pucQueueStorageBuffer, 0, uxQueueLength * uxItemSize); in xQueueCreateStatic()
1496 pxQueueBuffer->msg_size = uxItemSize; in xQueueCreateStatic()
1513 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize) in xQueueCreate() argument
1521 configASSERT(uxItemSize >= sizeof(UINT)); in xQueueCreate()
1534 mem_size = uxQueueLength*(uxItemSize); in xQueueCreate()
1550 p_queue->msg_size = uxItemSize; in xQueueCreate()
DFreeRTOS.h484 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize);
487 UBaseType_t uxItemSize,