Home
last modified time | relevance | path

Searched refs:UNGET (Results 1 – 9 of 9) sorted by relevance

/third_party/ulib/musl/src/stdio/
A Dstdin.c3 static unsigned char buf[BUFSIZ + UNGET];
5 .buf = buf + UNGET,
6 .buf_size = sizeof buf - UNGET,
A Dstdout.c3 static unsigned char buf[BUFSIZ + UNGET];
5 .buf = buf + UNGET,
6 .buf_size = sizeof buf - UNGET,
A Dstderr.c3 static unsigned char buf[UNGET];
5 .buf = buf + UNGET,
A D__fopen_rb_ca.c14 f->buf = buf + UNGET; in __fopen_rb_ca()
15 f->buf_size = len - UNGET; in __fopen_rb_ca()
A D__fdopen.c25 if (!(f = malloc(sizeof *f + UNGET + BUFSIZ))) in __fdopen()
47 f->buf = (unsigned char*)f + sizeof *f + UNGET; in __fdopen()
A Dfmemopen.c87 if (!buf && size > SIZE_MAX - sizeof(FILE) - BUFSIZ - UNGET) { in fmemopen()
92 f = calloc(sizeof *f + sizeof *c + UNGET + BUFSIZ + (buf ? 0 : size), 1); in fmemopen()
98 f->buf = (unsigned char*)(c + 1) + UNGET; in fmemopen()
A Dungetc.c11 if (!f->rpos || f->rpos <= f->buf - UNGET) { in ungetc()
A Dungetwc.c22 f->rpos < f->buf - UNGET + l) { in ungetwc()
/third_party/ulib/musl/src/internal/
A Dstdio_impl.h7 #define UNGET 8 macro

Completed in 8 milliseconds