Lines Matching refs:bytesEachRead

61     uint8_t bytesEachRead;      member
103 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool …
1058 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1060 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1063 … LPSPI_SeparateReadData((stateParams->rxData), readData, (stateParams->bytesEachRead), isByteSwap);
1064 (stateParams->rxData) += (stateParams->bytesEachRead);
1066 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1117 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1119 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1122 … LPSPI_SeparateReadData((stateParams->rxData), readData, (stateParams->bytesEachRead), isByteSwap);
1123 (stateParams->rxData) += (stateParams->bytesEachRead);
1125 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1259 stateParams.bytesEachRead = (uint8_t)bytesPerFrame;
1264 stateParams.bytesEachRead = 4U;
1393 handle->bytesEachRead = (uint8_t)handle->bytesPerFrame;
1398 handle->bytesEachRead = 4U;
1690 uint8_t bytesEachRead = handle->bytesEachRead; local
1718 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
1720 handle->bytesEachRead = (uint8_t)(handle->rxRemainingByteCount);
1721 bytesEachRead = handle->bytesEachRead;
1724 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
1725 handle->rxData += bytesEachRead;
1728 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
1911 handle->bytesEachRead = (uint8_t)bytesPerFrame;
1916 handle->bytesEachRead = 4U;
2143 uint8_t bytesEachRead = handle->bytesEachRead; local
2159 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
2161 handle->bytesEachRead = (uint8_t)handle->rxRemainingByteCount;
2162 bytesEachRead = handle->bytesEachRead;
2165 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
2166 handle->rxData += bytesEachRead;
2169 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
2352 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool … argument
2360 switch (bytesEachRead)