Home
last modified time | relevance | path

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

/picolibc-latest/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, __BFALL); in fdopen()
Dfunopen.c57 bf = calloc(1, sizeof(struct __file_bufio) + BUFSIZ); in funopen()
65 … FDEV_SETUP_BUFIO_PTR(cookie, buf, BUFSIZ, readfn, writefn, seekfn, closefn, open_flags, __BFALL); in funopen()
Dsetbuf.c41 setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ); in setbuf()
Dstdio.h285 #ifndef BUFSIZ
286 #define BUFSIZ 512 macro
/picolibc-latest/newlib/libc/stdio/
Dungetc.c90 if ((p = (unsigned char *) malloc ((size_t) BUFSIZ)) == NULL) in __submore()
93 fp->_ub._size = BUFSIZ; in __submore()
94 p += BUFSIZ - sizeof (fp->_ubuf); in __submore()
Dmakebuf.c103 *bufsize = BUFSIZ; in _swhatbuf()
122 *bufsize = BUFSIZ; in _swhatbuf()
Dsetbuf.c71 (void) setvbuf (fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ); in setbuf()
Dfputws.c101 char buf[BUFSIZ]; in fputws()
Dfvwrite.c124 MIN (len, INT_MAX - INT_MAX % BUFSIZ)); in _sfvwrite()
Dstdio.h270 #define BUFSIZ __BUFSIZ__ macro
272 #define BUFSIZ 1024 macro
Dvfwprintf.c173 unsigned char buf[BUFSIZ]; in __sbwprintf()
Dvfprintf.c206 unsigned char buf[BUFSIZ]; in __sbprintf()
/picolibc-latest/test/
Dt_fmemopen.c133 char buf[BUFSIZ]; in ATF_TC_BODY()
169 fp = fmemopen(NULL, BUFSIZ, *p); in ATF_TC_BODY()
190 char buf[BUFSIZ]; in ATF_TC_BODY()
243 char buf[BUFSIZ]; in ATF_TC_BODY()
281 char buf[BUFSIZ]; in ATF_TC_BODY()
326 char buf[BUFSIZ]; in ATF_TC_BODY()
442 char buf[BUFSIZ]; in ATF_TC_BODY()
501 char buf[BUFSIZ]; in ATF_TC_BODY()
549 char buf[BUFSIZ]; in ATF_TC_BODY()
603 char buf[BUFSIZ]; in ATF_TC_BODY()
[all …]
/picolibc-latest/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.