Searched refs:uxItemSize (Results 1 – 2 of 2) sorted by relevance
1474 UBaseType_t uxItemSize, in xQueueCreateStatic() argument1481 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() argument1524 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()
483 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize);486 UBaseType_t uxItemSize,