Lines Matching refs:txCount
96 size_t txCount; member
109 size_t txCount; member
482 size_t txCount; in I3C_MasterWaitForTxReady() local
492 I3C_MasterGetFifoCounts(base, NULL, &txCount); in I3C_MasterWaitForTxReady()
493 txCount = txFifoSize - txCount; in I3C_MasterWaitForTxReady()
503 } while ((txCount < byteCounts) && (--waitTimes)); in I3C_MasterWaitForTxReady()
510 } while (txCount < byteCounts); in I3C_MasterWaitForTxReady()
656 size_t txCount; in I3C_SlaveWaitForTxReady() local
666 I3C_SlaveGetFifoCounts(base, NULL, &txCount); in I3C_SlaveWaitForTxReady()
667 txCount = txFifoSize - txCount; in I3C_SlaveWaitForTxReady()
677 } while ((txCount == 0UL) && (--waitTimes)); in I3C_SlaveWaitForTxReady()
684 } while (txCount == 0UL); in I3C_SlaveWaitForTxReady()
1765 size_t txCount = 0xFFUL; in I3C_MasterTransferNoStartFlag() local
1767 while (txCount != 0U) in I3C_MasterTransferNoStartFlag()
1769 I3C_MasterGetFifoCounts(base, NULL, &txCount); in I3C_MasterTransferNoStartFlag()
2109 if (0UL == (stateParams->txCount)--) in I3C_TransferStateMachineSendCommandState()
2195 if (0UL == (stateParams->txCount)--) in I3C_TransferStateMachineTransferDataState()
2271 if (0UL == (stateParams->txCount)--) in I3C_TransferStateMachineStopState()
2340 I3C_MasterGetFifoCounts(base, &stateParams.rxCount, &stateParams.txCount); in I3C_RunTransferStateMachine()
2341 stateParams.txCount = txFifoSize - stateParams.txCount; in I3C_RunTransferStateMachine()
3391 while ((handle->transfer.txDataSize != 0UL) && ((stateParams->txCount) != 0U)) in I3C_SlaveTransferHandleTxReady()
3404 (stateParams->txCount)--; in I3C_SlaveTransferHandleTxReady()
3488 I3C_SlaveGetFifoCounts(base, &stateParams.rxCount, &stateParams.txCount); in I3C_SlaveTransferHandleIRQ()
3489 stateParams.txCount = handle->txFifoSize - stateParams.txCount; in I3C_SlaveTransferHandleIRQ()