Home
last modified time | relevance | path

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

/btstack/port/stm32-wb55xx-nucleo-freertos/Middlewares/STM32_WPAN/utilities/
H A Dstm_queue.c53 q->byteCount = 0; in CircularQueue_Init()
94 if (q->byteCount) in CircularQueue_Add()
115 …if (elementSize && ((q->byteCount + ((elementSize + elemSizeStorageRoom )*nbElements) + overhead) … in CircularQueue_Add()
131 q->byteCount += 2; in CircularQueue_Add()
143 q->byteCount += NbBytesToCopy; in CircularQueue_Add()
164 …q->byteCount += NbBytesToCopy; /* invalid data at the end of buffer are take into account in byte… in CircularQueue_Add()
176 q->byteCount += 2; in CircularQueue_Add()
190 q->byteCount += NbBytesToCopy; in CircularQueue_Add()
202 q->byteCount += 2; in CircularQueue_Add()
220 q->byteCount += NbBytesToCopy; in CircularQueue_Add()
[all …]
H A Dstm_queue.h41 uint32_t byteCount; /* number of bytes in the queue */ member