Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/freertos/
Dqueue.c64 #define uxQueueType pcHead
99 int8_t *pcHead; /*< Points to the beginning of the queue storage area. */ member
273 …pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !… in xQueueGenericReset()
275 pxQueue->pcWriteTo = pxQueue->pcHead; in xQueueGenericReset()
276 …pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSiz… in xQueueGenericReset()
457 pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; in prvInitialiseNewQueue()
462 pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; in prvInitialiseNewQueue()
2118 pxQueue->pcWriteTo = pxQueue->pcHead; in prvCopyDataToQueue()
2129 …if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as com… in prvCopyDataToQueue()
2172 pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; in prvCopyDataFromQueue()
[all …]