Lines Matching refs:buffCounter
1859 uint32_t buffCounter = context->txBufferCounter; in Cy_SMIF_PushTxFifo() local
1863 writeBytes = (freeFifoBytes > buffCounter)? buffCounter: freeFifoBytes; in Cy_SMIF_PushTxFifo()
1913 buffCounter -= writeBytes; in Cy_SMIF_PushTxFifo()
1917 writeBytes = (freeFifoBytes > buffCounter)? buffCounter: freeFifoBytes; in Cy_SMIF_PushTxFifo()
1922 context->txBufferCounter = buffCounter; in Cy_SMIF_PushTxFifo()
1925 if (0u == buffCounter) in Cy_SMIF_PushTxFifo()
1966 uint32_t buffCounter = context->rxBufferCounter; in Cy_SMIF_PopRxFifo() local
1970 readBytes = (loadedFifoBytes > buffCounter)? buffCounter: loadedFifoBytes; in Cy_SMIF_PopRxFifo()
2021 buffCounter -= readBytes; in Cy_SMIF_PopRxFifo()
2024 readBytes = (loadedFifoBytes > buffCounter)? buffCounter: loadedFifoBytes; in Cy_SMIF_PopRxFifo()
2029 context->rxBufferCounter = buffCounter; in Cy_SMIF_PopRxFifo()
2032 if (0UL == buffCounter) in Cy_SMIF_PopRxFifo()
2050 context->rxBufferCounter = buffCounter; in Cy_SMIF_PopRxFifo()