Lines Matching refs:bytesEachRead
57 uint8_t bytesEachRead; member
99 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool …
1027 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1029 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1032 … LPSPI_SeparateReadData((stateParams->rxData), readData, (stateParams->bytesEachRead), isByteSwap);
1033 (stateParams->rxData) += (stateParams->bytesEachRead);
1035 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1085 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1087 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1090 … LPSPI_SeparateReadData((stateParams->rxData), readData, (stateParams->bytesEachRead), isByteSwap);
1091 (stateParams->rxData) += (stateParams->bytesEachRead);
1093 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1222 stateParams.bytesEachRead = (uint8_t)bytesPerFrame;
1227 stateParams.bytesEachRead = 4U;
1355 handle->bytesEachRead = (uint8_t)handle->bytesPerFrame;
1360 handle->bytesEachRead = 4U;
1648 uint8_t bytesEachRead = handle->bytesEachRead; local
1676 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
1678 handle->bytesEachRead = (uint8_t)(handle->rxRemainingByteCount);
1679 bytesEachRead = handle->bytesEachRead;
1682 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
1683 handle->rxData += bytesEachRead;
1686 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
1862 handle->bytesEachRead = (uint8_t)bytesPerFrame;
1867 handle->bytesEachRead = 4U;
2094 uint8_t bytesEachRead = handle->bytesEachRead; local
2110 if (handle->rxRemainingByteCount < (size_t)bytesEachRead)
2112 handle->bytesEachRead = (uint8_t)handle->rxRemainingByteCount;
2113 bytesEachRead = handle->bytesEachRead;
2116 LPSPI_SeparateReadData(handle->rxData, readData, bytesEachRead, isByteSwap);
2117 handle->rxData += bytesEachRead;
2120 handle->rxRemainingByteCount -= (size_t)bytesEachRead;
2301 static void LPSPI_SeparateReadData(uint8_t *rxData, uint32_t readData, uint8_t bytesEachRead, bool … argument
2309 switch (bytesEachRead)