Searched refs:uxQueueLength (Results 1 – 2 of 2) sorted by relevance
1473 QueueHandle_t xQueueCreateStatic(UBaseType_t uxQueueLength, in xQueueCreateStatic() argument1480 configASSERT(uxQueueLength != 0u); in xQueueCreateStatic()1491 TX_MEMSET(pucQueueStorageBuffer, 0, uxQueueLength * uxItemSize); in xQueueCreateStatic()1500 pxQueueBuffer->queue_length = uxQueueLength; in xQueueCreateStatic()1507 ret = tx_semaphore_create(&pxQueueBuffer->write_sem, "", uxQueueLength); in xQueueCreateStatic()1516 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize) in xQueueCreate() argument1523 configASSERT(uxQueueLength != 0u); in xQueueCreate()1532 if ((uxQueueLength > (SIZE_MAX / uxItemSize)) || in xQueueCreate()1533 (uxQueueLength > (ULONG_MAX / uxItemSize))) { in xQueueCreate()1544 mem_size = uxQueueLength*(uxItemSize); in xQueueCreate()[all …]
483 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize);485 QueueHandle_t xQueueCreateStatic(UBaseType_t uxQueueLength,