Lines Matching refs:bytesEachRead
67 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool …
817 uint8_t bytesEachRead; in LPSPI_MasterTransferBlocking() local
870 bytesEachRead = (uint8_t)bytesPerFrame; in LPSPI_MasterTransferBlocking()
875 bytesEachRead = 4U; in LPSPI_MasterTransferBlocking()
926 if (rxRemainingByteCount < bytesEachRead) in LPSPI_MasterTransferBlocking()
928 bytesEachRead = (uint8_t)rxRemainingByteCount; in LPSPI_MasterTransferBlocking()
931 LPSPI_SeparateReadData(rxData, readData, bytesEachRead, isByteSwap); in LPSPI_MasterTransferBlocking()
932 rxData += bytesEachRead; in LPSPI_MasterTransferBlocking()
934 rxRemainingByteCount -= bytesEachRead; in LPSPI_MasterTransferBlocking()
978 if (rxRemainingByteCount < bytesEachRead) in LPSPI_MasterTransferBlocking()
980 bytesEachRead = (uint8_t)rxRemainingByteCount; in LPSPI_MasterTransferBlocking()
983 LPSPI_SeparateReadData(rxData, readData, bytesEachRead, isByteSwap); in LPSPI_MasterTransferBlocking()
984 rxData += bytesEachRead; in LPSPI_MasterTransferBlocking()
986 rxRemainingByteCount -= bytesEachRead; in LPSPI_MasterTransferBlocking()
1144 handle->bytesEachRead = (uint8_t)bytesPerFrame; in LPSPI_MasterTransferNonBlocking()
1149 handle->bytesEachRead = 4U; in LPSPI_MasterTransferNonBlocking()
1360 uint8_t bytesEachRead = handle->bytesEachRead; in LPSPI_MasterTransferHandleIRQ() local
1383 if (handle->rxRemainingByteCount < (size_t)bytesEachRead) in LPSPI_MasterTransferHandleIRQ()
1385 handle->bytesEachRead = (uint8_t)(handle->rxRemainingByteCount); in LPSPI_MasterTransferHandleIRQ()
1386 bytesEachRead = handle->bytesEachRead; in LPSPI_MasterTransferHandleIRQ()
1389 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap); in LPSPI_MasterTransferHandleIRQ()
1390 handle->rxData += bytesEachRead; in LPSPI_MasterTransferHandleIRQ()
1393 handle->rxRemainingByteCount -= (size_t)bytesEachRead; in LPSPI_MasterTransferHandleIRQ()
1609 handle->bytesEachRead = (uint8_t)bytesPerFrame; in LPSPI_SlaveTransferNonBlocking()
1614 handle->bytesEachRead = 4U; in LPSPI_SlaveTransferNonBlocking()
1815 uint8_t bytesEachRead = handle->bytesEachRead; in LPSPI_SlaveTransferHandleIRQ() local
1832 if (handle->rxRemainingByteCount < (size_t)bytesEachRead) in LPSPI_SlaveTransferHandleIRQ()
1834 handle->bytesEachRead = (uint8_t)handle->rxRemainingByteCount; in LPSPI_SlaveTransferHandleIRQ()
1835 bytesEachRead = handle->bytesEachRead; in LPSPI_SlaveTransferHandleIRQ()
1838 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap); in LPSPI_SlaveTransferHandleIRQ()
1839 handle->rxData += bytesEachRead; in LPSPI_SlaveTransferHandleIRQ()
1842 handle->rxRemainingByteCount -= (size_t)bytesEachRead; in LPSPI_SlaveTransferHandleIRQ()
2020 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool … in LPSPI_SeparateReadData() argument
2024 switch (bytesEachRead) in LPSPI_SeparateReadData()