Lines Matching refs:bytesEachWrite
60 uint8_t bytesEachWrite; member
97 static uint32_t LPSPI_CombineWriteData(const uint8_t *txData, uint8_t bytesEachWrite, bool isByteSw…
963 if (txRemainingByteCount < (stateParams->bytesEachWrite))
965 (stateParams->bytesEachWrite) = (uint8_t)txRemainingByteCount;
1014 if (stateParams->bytesEachWrite != 1U)
1017 … LPSPI_CombineWriteData((stateParams->txData), (stateParams->bytesEachWrite), isByteSwap);
1018 (stateParams->txData) += (stateParams->bytesEachWrite);
1028 txRemainingByteCount -= (stateParams->bytesEachWrite);
1257 stateParams.bytesEachWrite = (uint8_t)bytesPerFrame;
1262 stateParams.bytesEachWrite = 4U;
1391 handle->bytesEachWrite = (uint8_t)handle->bytesPerFrame;
1396 handle->bytesEachWrite = 4U;
1538 uint8_t bytesEachWrite = handle->bytesEachWrite; local
1548 if (txRemainingByteCount < (size_t)bytesEachWrite)
1550 handle->bytesEachWrite = (uint8_t)txRemainingByteCount;
1551 bytesEachWrite = handle->bytesEachWrite;
1556 wordToSend = LPSPI_CombineWriteData(handle->txData, bytesEachWrite, isByteSwap);
1557 handle->txData += bytesEachWrite;
1572 handle->txRemainingByteCount -= (size_t)bytesEachWrite;
1909 handle->bytesEachWrite = (uint8_t)bytesPerFrame;
1914 handle->bytesEachWrite = 4U;
2012 uint8_t bytesEachWrite = handle->bytesEachWrite; local
2017 if (handle->txRemainingByteCount < (size_t)bytesEachWrite)
2019 handle->bytesEachWrite = (uint8_t)handle->txRemainingByteCount;
2020 bytesEachWrite = handle->bytesEachWrite;
2023 wordToSend = LPSPI_CombineWriteData(handle->txData, bytesEachWrite, isByteSwap);
2024 handle->txData += bytesEachWrite;
2027 handle->txRemainingByteCount -= (size_t)bytesEachWrite;
2263 static uint32_t LPSPI_CombineWriteData(const uint8_t *txData, uint8_t bytesEachWrite, bool isByteSw… argument
2273 switch (bytesEachWrite)