Lines Matching refs:bytesEachRead

61     uint8_t bytesEachRead;      member
103 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool …
1057 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1059 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1062 … LPSPI_SeparateReadData((stateParams->rxData), readData, (stateParams->bytesEachRead), isByteSwap);
1063 (stateParams->rxData) += (stateParams->bytesEachRead);
1065 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1116 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1118 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1121 … LPSPI_SeparateReadData((stateParams->rxData), readData, (stateParams->bytesEachRead), isByteSwap);
1122 (stateParams->rxData) += (stateParams->bytesEachRead);
1124 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1258 stateParams.bytesEachRead = (uint8_t)bytesPerFrame;
1263 stateParams.bytesEachRead = 4U;
1392 handle->bytesEachRead = (uint8_t)handle->bytesPerFrame;
1397 handle->bytesEachRead = 4U;
1689 uint8_t bytesEachRead = handle->bytesEachRead; local
1717 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
1719 handle->bytesEachRead = (uint8_t)(handle->rxRemainingByteCount);
1720 bytesEachRead = handle->bytesEachRead;
1723 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
1724 handle->rxData += bytesEachRead;
1727 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
1910 handle->bytesEachRead = (uint8_t)bytesPerFrame;
1915 handle->bytesEachRead = 4U;
2142 uint8_t bytesEachRead = handle->bytesEachRead; local
2158 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
2160 handle->bytesEachRead = (uint8_t)handle->rxRemainingByteCount;
2161 bytesEachRead = handle->bytesEachRead;
2164 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
2165 handle->rxData += bytesEachRead;
2168 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
2351 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool … argument
2359 switch (bytesEachRead)