Searched refs:_lbfsize (Results 1 - 11 of 11) sorted by relevance

/freebsd-10-stable/lib/libc/stdio/
H A Dwbuf.c62 fp->_w = fp->_lbfsize;
H A Dwsetup.c83 * It is line buffered, so make _lbfsize be -_bufsize
84 * for the putc() macro. We will change _lbfsize back
88 fp->_lbfsize = -fp->_bf._size;
H A Dsetvbuf.c77 fp->_r = fp->_lbfsize = 0;
141 /* fp->_lbfsize is still 0 */
149 fp->_lbfsize = -fp->_bf._size;
H A Drefill.c96 fp->_lbfsize = 0;
H A Dungetc.c125 fp->_lbfsize = 0;
H A Dfindfp.c148 fp->_lbfsize = 0; /* not line buffered */
H A Dfreopen.c181 fp->_lbfsize = 0;
H A Dxprintf.c593 fake._lbfsize = 0; /* not actually used, but Just In Case */
H A Dvfwprintf.c236 fake._lbfsize = 0; /* not actually used, but Just In Case */
H A Dvfprintf.c197 fake._lbfsize = 0; /* not actually used, but Just In Case */
/freebsd-10-stable/include/
H A Dstdio.h88 * _lbfsize is -_bf._size, else _lbfsize is 0
97 * _lbfsize is used only to make the inline line-buffered output stream
117 int _lbfsize; /* (*) 0 or -_bf._size, for inline putc */ member in struct:__sFILE
464 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
475 (p)->_w >= (p)->_lbfsize ? \

Completed in 184 milliseconds