Searched refs:wend (Results 1 - 12 of 12) sorted by relevance

/seL4-refos-master/libs/libmuslc/src/stdio/
H A D__overflow.c6 if (!f->wend && __towrite(f)) return EOF;
7 if (f->wpos < f->wend && c != f->lbf) return *f->wpos++ = c;
H A Dext.c17 return (f->flags & F_NORD) || f->wend;
47 return f->wend ? f->wpos - f->wbase : 0;
52 f->wpos = f->wbase = f->wend = 0;
H A D__towrite.c15 f->wend = f->buf + f->buf_size;
H A D__toread.c7 f->wpos = f->wbase = f->wend = 0;
H A D__stdio_write.c17 f->wend = f->buf + f->buf_size;
22 f->wpos = f->wbase = f->wend = 0;
H A Dfwrite.c8 if (!f->wend && __towrite(f)) return 0;
10 if (l > f->wend - f->wpos) return f->write(f, s, l);
H A Dfflush.c34 f->wpos = f->wbase = f->wend = 0;
H A Dfseek.c15 f->wpos = f->wbase = f->wend = 0;
H A Dvswprintf.c28 f->wpos = f->wbase = f->wend = 0;
32 f->wend = f->buf + f->buf_size;
H A Dfputwc.c18 } else if (f->wpos + MB_LEN_MAX < f->wend) {
H A Dvfprintf.c705 f->wend = internal_buf + sizeof internal_buf;
713 f->wpos = f->wbase = f->wend = 0;
/seL4-refos-master/libs/libmuslc/src/internal/
H A Dstdio_impl.h26 unsigned char *wend, *wpos; member in struct:_IO_FILE
90 ( ((unsigned char)(c)!=(f)->lbf && (f)->wpos<(f)->wend) \

Completed in 43 milliseconds