Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1474 UBaseType_t uxItemSize, in xQueueCreateStatic() argument
1481 configASSERT(uxItemSize >= sizeof(UINT)); in xQueueCreateStatic()
1491 TX_MEMSET(pucQueueStorageBuffer, 0, uxQueueLength * uxItemSize); in xQueueCreateStatic()
1499 pxQueueBuffer->msg_size = uxItemSize; in xQueueCreateStatic()
1516 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize) in xQueueCreate() argument
1524 configASSERT(uxItemSize >= sizeof(UINT)); in xQueueCreate()
1532 if ((uxQueueLength > (SIZE_MAX / uxItemSize)) || in xQueueCreate()
1533 (uxQueueLength > (ULONG_MAX / uxItemSize))) { in xQueueCreate()
1544 mem_size = uxQueueLength*(uxItemSize); in xQueueCreate()
1560 p_queue->msg_size = uxItemSize; in xQueueCreate()
DFreeRTOS.h483 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize);
486 UBaseType_t uxItemSize,