Lines Matching refs:bytesEachRead
67 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool …
842 uint8_t bytesEachRead; in LPSPI_MasterTransferBlocking() local
898 bytesEachRead = (uint8_t)bytesPerFrame; in LPSPI_MasterTransferBlocking()
903 bytesEachRead = 4U; in LPSPI_MasterTransferBlocking()
977 if (rxRemainingByteCount < bytesEachRead) in LPSPI_MasterTransferBlocking()
979 bytesEachRead = (uint8_t)rxRemainingByteCount; in LPSPI_MasterTransferBlocking()
982 LPSPI_SeparateReadData(rxData, readData, bytesEachRead, isByteSwap); in LPSPI_MasterTransferBlocking()
983 rxData += bytesEachRead; in LPSPI_MasterTransferBlocking()
985 rxRemainingByteCount -= bytesEachRead; in LPSPI_MasterTransferBlocking()
1032 if (rxRemainingByteCount < bytesEachRead) in LPSPI_MasterTransferBlocking()
1034 bytesEachRead = (uint8_t)rxRemainingByteCount; in LPSPI_MasterTransferBlocking()
1037 LPSPI_SeparateReadData(rxData, readData, bytesEachRead, isByteSwap); in LPSPI_MasterTransferBlocking()
1038 rxData += bytesEachRead; in LPSPI_MasterTransferBlocking()
1040 rxRemainingByteCount -= bytesEachRead; in LPSPI_MasterTransferBlocking()
1145 handle->bytesEachRead = (uint8_t)handle->bytesPerFrame; in LPSPI_MasterTransferNonBlocking()
1150 handle->bytesEachRead = 4U; in LPSPI_MasterTransferNonBlocking()
1426 uint8_t bytesEachRead = handle->bytesEachRead; in LPSPI_MasterTransferHandleIRQ() local
1449 if (handle->rxRemainingByteCount < (size_t)bytesEachRead) in LPSPI_MasterTransferHandleIRQ()
1451 handle->bytesEachRead = (uint8_t)(handle->rxRemainingByteCount); in LPSPI_MasterTransferHandleIRQ()
1452 bytesEachRead = handle->bytesEachRead; in LPSPI_MasterTransferHandleIRQ()
1455 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap); in LPSPI_MasterTransferHandleIRQ()
1456 handle->rxData += bytesEachRead; in LPSPI_MasterTransferHandleIRQ()
1459 handle->rxRemainingByteCount -= (size_t)bytesEachRead; in LPSPI_MasterTransferHandleIRQ()
1635 handle->bytesEachRead = (uint8_t)bytesPerFrame; in LPSPI_SlaveTransferNonBlocking()
1640 handle->bytesEachRead = 4U; in LPSPI_SlaveTransferNonBlocking()
1859 uint8_t bytesEachRead = handle->bytesEachRead; in LPSPI_SlaveTransferHandleIRQ() local
1875 if (handle->rxRemainingByteCount < (size_t)bytesEachRead) in LPSPI_SlaveTransferHandleIRQ()
1877 handle->bytesEachRead = (uint8_t)handle->rxRemainingByteCount; in LPSPI_SlaveTransferHandleIRQ()
1878 bytesEachRead = handle->bytesEachRead; in LPSPI_SlaveTransferHandleIRQ()
1881 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap); in LPSPI_SlaveTransferHandleIRQ()
1882 handle->rxData += bytesEachRead; in LPSPI_SlaveTransferHandleIRQ()
1885 handle->rxRemainingByteCount -= (size_t)bytesEachRead; in LPSPI_SlaveTransferHandleIRQ()
2050 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool … in LPSPI_SeparateReadData() argument
2054 switch (bytesEachRead) in LPSPI_SeparateReadData()