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

/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dwbuf.c73 fp->_w = fp->_lbfsize;
H A Dwsetup.c91 * It is line buffered, so make _lbfsize be -_bufsize
92 * for the putc() macro. We will change _lbfsize back
96 fp->_lbfsize = -fp->_bf._size;
H A Dsetvbuf.c91 fp->_r = fp->_lbfsize = 0;
156 /* fp->_lbfsize is still 0 */
164 fp->_lbfsize = -fp->_bf._size;
H A Drefill.c103 fp->_lbfsize = 0;
H A Dfreopen.c133 fp->_lbfsize = 0;
H A Dungetc.c124 fp->_lbfsize = 0;
H A Dfindfp.c131 fp->_lbfsize = 0; /* not line buffered */
H A Dvfwprintf.c177 fake._lbfsize = 0; /* not actually used, but Just In Case */
/netbsd-6-1-5-RELEASE/include/
H A Dstdio.h92 * _lbfsize is -_bf._size, else _lbfsize is 0
101 * _lbfsize is used only to make the inline line-buffered output stream
119 int _lbfsize; /* 0 or -_bf._size, for inline putc */ member in struct:__sFILE
454 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
465 (p)->_w >= (p)->_lbfsize ? \

Completed in 162 milliseconds