Lines Matching refs:txData
70 static uint32_t LPSPI_CombineWriteData(const uint8_t *txData, uint8_t bytesEachWrite, bool isByteSw…
837 if ((NULL == (transfer->txData)) && (NULL == (transfer->rxData)))
876 if ((transfer->txData != NULL) && (transfer->rxData != NULL))
880 if (NULL == transfer->txData)
934 const uint8_t *txData = transfer->txData; local
959 (txData == NULL))
1042 if (txData != NULL)
1044 wordToSend = LPSPI_CombineWriteData(txData, bytesEachWrite, isByteSwap);
1045 txData += bytesEachWrite;
1213 handle->txData = transfer->txData;
1267 (handle->txData == NULL))
1382 if (handle->txData != NULL)
1384 wordToSend = LPSPI_CombineWriteData(handle->txData, bytesEachWrite, isByteSwap);
1385 handle->txData += bytesEachWrite;
1727 handle->txData = transfer->txData;
1769 if (handle->txData == NULL)
1794 if (handle->txData != NULL)
1821 if (handle->txData != NULL)
1846 wordToSend = LPSPI_CombineWriteData(handle->txData, bytesEachWrite, isByteSwap);
1847 handle->txData += bytesEachWrite;
1994 if ((handle->txRemainingByteCount > 0U) && (handle->txData != NULL))
2016 … if ((handle->rxData == NULL) && (handle->txRemainingByteCount != 0U) && (handle->txData != NULL))
2053 if (handle->txData != NULL)
2067 if (handle->txData != NULL)
2075 static uint32_t LPSPI_CombineWriteData(const uint8_t *txData, uint8_t bytesEachWrite, bool isByteSw… argument
2077 assert(txData != NULL);
2084 wordToSend = *txData;
2085 ++txData;
2091 wordToSend = *txData;
2092 ++txData;
2093 wordToSend |= (unsigned)(*txData) << 8U;
2094 ++txData;
2098 wordToSend = (unsigned)(*txData) << 8U;
2099 ++txData;
2100 wordToSend |= *txData;
2101 ++txData;
2109 wordToSend = *txData;
2110 ++txData;
2111 wordToSend |= (unsigned)(*txData) << 8U;
2112 ++txData;
2113 wordToSend |= (unsigned)(*txData) << 16U;
2114 ++txData;
2118 wordToSend = (unsigned)(*txData) << 16U;
2119 ++txData;
2120 wordToSend |= (unsigned)(*txData) << 8U;
2121 ++txData;
2122 wordToSend |= *txData;
2123 ++txData;
2130 wordToSend = *txData;
2131 ++txData;
2132 wordToSend |= (unsigned)(*txData) << 8U;
2133 ++txData;
2134 wordToSend |= (unsigned)(*txData) << 16U;
2135 ++txData;
2136 wordToSend |= (unsigned)(*txData) << 24U;
2137 ++txData;
2141 wordToSend = (unsigned)(*txData) << 24U;
2142 ++txData;
2143 wordToSend |= (unsigned)(*txData) << 16U;
2144 ++txData;
2145 wordToSend |= (unsigned)(*txData) << 8U;
2146 ++txData;
2147 wordToSend |= *txData;
2148 ++txData;