Home
last modified time | relevance | path

Searched refs:bytesToCopy (Results 1 – 7 of 7) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/lpc_miniusart/
Dfsl_usart.c733 size_t bytesToCopy = 0U; in USART_TransferReceiveNonBlocking() local
766 bytesToCopy = USART_TransferGetRxRingBufferLength(handle); in USART_TransferReceiveNonBlocking()
767 if (bytesToCopy != 0U) in USART_TransferReceiveNonBlocking()
769 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in USART_TransferReceiveNonBlocking()
770 bytesToReceive -= bytesToCopy; in USART_TransferReceiveNonBlocking()
772 for (i = 0U; i < bytesToCopy; i++) in USART_TransferReceiveNonBlocking()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/flexio/uart/
Dfsl_flexio_uart.c717 size_t bytesToCopy = 0U; in FLEXIO_UART_TransferReceiveNonBlocking() local
755 bytesToCopy = FLEXIO_UART_TransferGetRxRingBufferLength(handle); in FLEXIO_UART_TransferReceiveNonBlocking()
757 if (bytesToCopy != 0U) in FLEXIO_UART_TransferReceiveNonBlocking()
759 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in FLEXIO_UART_TransferReceiveNonBlocking()
761 bytesToReceive -= bytesToCopy; in FLEXIO_UART_TransferReceiveNonBlocking()
764 for (i = 0U; i < bytesToCopy; i++) in FLEXIO_UART_TransferReceiveNonBlocking()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/lpsci/
Dfsl_lpsci.c719 size_t bytesToCopy = 0U; in LPSCI_TransferReceiveNonBlocking() local
751 bytesToCopy = LPSCI_TransferGetRxRingBufferLength(handle); in LPSCI_TransferReceiveNonBlocking()
753 if (bytesToCopy) in LPSCI_TransferReceiveNonBlocking()
755 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in LPSCI_TransferReceiveNonBlocking()
757 bytesToReceive -= bytesToCopy; in LPSCI_TransferReceiveNonBlocking()
760 for (i = 0U; i < bytesToCopy; i++) in LPSCI_TransferReceiveNonBlocking()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/flexcomm/usart/
Dfsl_usart.c929 size_t bytesToCopy = 0U; in USART_TransferReceiveNonBlocking() local
980 bytesToCopy = USART_TransferGetRxRingBufferLength(handle); in USART_TransferReceiveNonBlocking()
981 if (bytesToCopy != 0U) in USART_TransferReceiveNonBlocking()
983 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in USART_TransferReceiveNonBlocking()
984 bytesToReceive -= bytesToCopy; in USART_TransferReceiveNonBlocking()
986 for (i = 0U; i < bytesToCopy; i++) in USART_TransferReceiveNonBlocking()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/iuart/
Dfsl_uart.c1070 size_t bytesToCopy = 0U; in UART_TransferReceiveNonBlocking() local
1102 bytesToCopy = UART_TransferGetRxRingBufferLength(handle); in UART_TransferReceiveNonBlocking()
1104 if (bytesToCopy != 0U) in UART_TransferReceiveNonBlocking()
1106 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in UART_TransferReceiveNonBlocking()
1108 bytesToReceive -= bytesToCopy; in UART_TransferReceiveNonBlocking()
1111 for (i = 0U; i < bytesToCopy; i++) in UART_TransferReceiveNonBlocking()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/uart/
Dfsl_uart.c1188 size_t bytesToCopy = 0U; in UART_TransferReceiveNonBlocking() local
1225 bytesToCopy = UART_TransferGetRxRingBufferLength(handle); in UART_TransferReceiveNonBlocking()
1227 if (bytesToCopy != 0U) in UART_TransferReceiveNonBlocking()
1229 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in UART_TransferReceiveNonBlocking()
1231 bytesToReceive -= bytesToCopy; in UART_TransferReceiveNonBlocking()
1234 for (i = 0U; i < bytesToCopy; i++) in UART_TransferReceiveNonBlocking()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/lpuart/
Dfsl_lpuart.c1472 size_t bytesToCopy = 0U; in LPUART_TransferReceiveNonBlocking() local
1508 bytesToCopy = LPUART_TransferGetRxRingBufferLength(base, handle); in LPUART_TransferReceiveNonBlocking()
1510 if (0U != bytesToCopy) in LPUART_TransferReceiveNonBlocking()
1512 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in LPUART_TransferReceiveNonBlocking()
1514 bytesToReceive -= bytesToCopy; in LPUART_TransferReceiveNonBlocking()
1517 for (i = 0U; i < bytesToCopy; i++) in LPUART_TransferReceiveNonBlocking()