Home
last modified time | relevance | path

Searched refs:BUFSIZ (Results 1 – 16 of 16) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/
Dposixiob_stdin.c38 static char read_buf[BUFSIZ];
40 static struct __file_bufio __stdin = FDEV_SETUP_POSIX(0, read_buf, BUFSIZ, __SRD, 0);
Dposixiob_stdout.c38 static char write_buf[BUFSIZ];
40 static struct __file_bufio __stdout = FDEV_SETUP_POSIX(1, write_buf, BUFSIZ, __SWR, __BLBF);
Dfdopen.c51 bf = calloc(1, sizeof(struct __file_bufio) + BUFSIZ); in fdopen()
60 FDEV_SETUP_POSIX(fd, buf, BUFSIZ, stdio_flags, 0); in fdopen()
Dsetbuf.c41 setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ); in setbuf()
Dstdio.h287 #ifndef BUFSIZ
288 #define BUFSIZ 512 macro
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/
Dungetc.c91 if ((p = (unsigned char *) malloc ((size_t) BUFSIZ)) == NULL) in __submore()
94 fp->_ub._size = BUFSIZ; in __submore()
95 p += BUFSIZ - sizeof (fp->_ubuf); in __submore()
Dmakebuf.c104 *bufsize = BUFSIZ; in _swhatbuf()
123 *bufsize = BUFSIZ; in _swhatbuf()
Dsetbuf.c72 (void) setvbuf (fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ); in setbuf()
Dfputws.c102 char buf[BUFSIZ]; in fputws()
Dfvwrite.c125 MIN (len, INT_MAX - INT_MAX % BUFSIZ)); in _sfvwrite()
Dstdio.h272 #define BUFSIZ __BUFSIZ__ macro
274 #define BUFSIZ 1024 macro
Dvfwprintf.c175 unsigned char buf[BUFSIZ]; in __sbwprintf()
Dvfprintf.c211 unsigned char buf[BUFSIZ]; in __sbprintf()
/picolibc-3.7.0-3.6.0/test/
Dt_fmemopen.c139 char buf[BUFSIZ]; in ATF_TC_BODY()
175 fp = fmemopen(NULL, BUFSIZ, *p); in ATF_TC_BODY()
196 char buf[BUFSIZ]; in ATF_TC_BODY()
249 char buf[BUFSIZ]; in ATF_TC_BODY()
287 char buf[BUFSIZ]; in ATF_TC_BODY()
332 char buf[BUFSIZ]; in ATF_TC_BODY()
448 char buf[BUFSIZ]; in ATF_TC_BODY()
507 char buf[BUFSIZ]; in ATF_TC_BODY()
555 char buf[BUFSIZ]; in ATF_TC_BODY()
615 char buf[BUFSIZ]; in ATF_TC_BODY()
[all …]
/picolibc-3.7.0-3.6.0/newlib/
DREADME347 increases stack consumption by about `BUFSIZ' bytes. This option
DChangeLog-201519585 * libc/include/stdio.h (BUFSIZ): Define to __BUFSIZ__ if provided,
20953 * setvbuf.c (setvbuf): Set size to BUFSIZ when passed a zero size
21120 * setvbuf.c (setvbuf): When mallocing a buffer of size BUFSIZ,
21121 also note BUFSIZ as its size.