Lines Matching +full:- +full:c
3 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5 * SPDX-License-Identifier: MIT AND BSD-3-Clause
33 * \brief System-specific implementation of the \ref __read function used by
36 * - Compiler: IAR EWAVR32
37 * - Supported devices: All AVR32 devices with a USART module can be used.
38 * - AppNote:
47 * Copyright (c) 2007, Atmel Corporation All rights reserved.
96 * \return The number of bytes read, \c 0 at the end of the file, or
97 * \c _LLIO_ERROR on failure.
112 for( ; size > 0; --size ) in __read()
114 int c = usart_getchar( stdio_usart_base ); in __read() local
116 if( c < 0 ) in __read()
121 *buffer++ = c; in __read()