Home
last modified time | relevance | path

Searched refs:_ubuf (Results 1 – 3 of 3) sorted by relevance

/freebsd-9-stable/lib/libc/stdio/
Dungetc.c61 if (fp->_ub._base == fp->_ubuf) { in __submore()
69 p += BUFSIZ - sizeof(fp->_ubuf); in __submore()
70 for (i = sizeof(fp->_ubuf); --i >= 0;) in __submore()
71 p[i] = fp->_ubuf[i]; in __submore()
162 fp->_ub._base = fp->_ubuf; in __ungetc()
163 fp->_ub._size = sizeof(fp->_ubuf); in __ungetc()
164 fp->_ubuf[sizeof(fp->_ubuf) - 1] = c; in __ungetc()
165 fp->_p = &fp->_ubuf[sizeof(fp->_ubuf) - 1]; in __ungetc()
Dlocal.h104 if ((fp)->_ub._base != (fp)->_ubuf) \
/freebsd-9-stable/include/
Dstdio.h132 unsigned char _ubuf[3]; /* guarantee an ungetc() buffer */ member