Lines Matching refs:bytesEachWrite

70 static uint32_t LPSPI_CombineWriteData(const uint8_t *txData, uint8_t bytesEachWrite, bool isByteSw…
932 uint8_t bytesEachWrite; local
989 bytesEachWrite = (uint8_t)bytesPerFrame;
994 bytesEachWrite = 4U;
1001 if (txRemainingByteCount < bytesEachWrite)
1003 bytesEachWrite = (uint8_t)txRemainingByteCount;
1044 wordToSend = LPSPI_CombineWriteData(txData, bytesEachWrite, isByteSwap);
1045 txData += bytesEachWrite;
1049 txRemainingByteCount -= bytesEachWrite;
1235 handle->bytesEachWrite = (uint8_t)handle->bytesPerFrame;
1240 handle->bytesEachWrite = 4U;
1366 uint8_t bytesEachWrite = handle->bytesEachWrite; local
1376 if (txRemainingByteCount < (size_t)bytesEachWrite)
1378 handle->bytesEachWrite = (uint8_t)txRemainingByteCount;
1379 bytesEachWrite = handle->bytesEachWrite;
1384 wordToSend = LPSPI_CombineWriteData(handle->txData, bytesEachWrite, isByteSwap);
1385 handle->txData += bytesEachWrite;
1400 handle->txRemainingByteCount -= (size_t)bytesEachWrite;
1740 handle->bytesEachWrite = (uint8_t)bytesPerFrame;
1745 handle->bytesEachWrite = 4U;
1835 uint8_t bytesEachWrite = handle->bytesEachWrite; local
1840 if (handle->txRemainingByteCount < (size_t)bytesEachWrite)
1842 handle->bytesEachWrite = (uint8_t)handle->txRemainingByteCount;
1843 bytesEachWrite = handle->bytesEachWrite;
1846 wordToSend = LPSPI_CombineWriteData(handle->txData, bytesEachWrite, isByteSwap);
1847 handle->txData += bytesEachWrite;
1850 handle->txRemainingByteCount -= (size_t)bytesEachWrite;
2075 static uint32_t LPSPI_CombineWriteData(const uint8_t *txData, uint8_t bytesEachWrite, bool isByteSw… argument
2081 switch (bytesEachWrite)