Lines Matching refs:bytesEachRead

76 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool …
933 uint8_t bytesEachRead; local
990 bytesEachRead = (uint8_t)bytesPerFrame;
995 bytesEachRead = 4U;
1069 if (rxRemainingByteCount < bytesEachRead)
1071 bytesEachRead = (uint8_t)rxRemainingByteCount;
1074 LPSPI_SeparateReadData(rxData, readData, bytesEachRead, isByteSwap);
1075 rxData += bytesEachRead;
1077 rxRemainingByteCount -= bytesEachRead;
1124 if (rxRemainingByteCount < bytesEachRead)
1126 bytesEachRead = (uint8_t)rxRemainingByteCount;
1129 LPSPI_SeparateReadData(rxData, readData, bytesEachRead, isByteSwap);
1130 rxData += bytesEachRead;
1132 rxRemainingByteCount -= bytesEachRead;
1236 handle->bytesEachRead = (uint8_t)handle->bytesPerFrame;
1241 handle->bytesEachRead = 4U;
1518 uint8_t bytesEachRead = handle->bytesEachRead; local
1541 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
1543 handle->bytesEachRead = (uint8_t)(handle->rxRemainingByteCount);
1544 bytesEachRead = handle->bytesEachRead;
1547 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
1548 handle->rxData += bytesEachRead;
1551 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
1741 handle->bytesEachRead = (uint8_t)bytesPerFrame;
1746 handle->bytesEachRead = 4U;
1966 uint8_t bytesEachRead = handle->bytesEachRead; local
1982 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
1984 handle->bytesEachRead = (uint8_t)handle->rxRemainingByteCount;
1985 bytesEachRead = handle->bytesEachRead;
1988 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
1989 handle->rxData += bytesEachRead;
1992 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
2159 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool … argument
2163 switch (bytesEachRead)