Home
last modified time | relevance | path

Searched refs:__filbuf (Results 1 – 14 of 14) sorted by relevance

/titanic_44/usr/src/lib/libc/port/stdio/
H A Dgetc.c57 c = (--iop->_cnt < 0) ? __filbuf(iop) : *iop->_ptr++; in getc()
66 return ((--iop->_cnt < 0) ? __filbuf(iop) : *iop->_ptr++); in getc_unlocked()
H A Dgets.c77 if (__filbuf(stdin) != EOF) { in gets()
H A D_filbuf.c33 #pragma weak __filbuf = _filbuf macro
H A Dfgets.c77 if (__filbuf(iop) != EOF) { in fgets()
H A Dgetline.c73 c = (--iop->_cnt < 0) ? __filbuf(iop) : *iop->_ptr++; in getdelim()
H A Dfread.c91 if ((c = __filbuf(iop)) == EOF) in fread()
/titanic_44/usr/src/head/iso/
H A Dstdio_iso.h265 extern int __filbuf(FILE *);
280 return (--_p->_cnt < 0 ? __filbuf(_p) : (int)*_p->_ptr++); } in getc()
286 #define getc(p) (--(p)->_cnt < 0 ? __filbuf(p) : (int)*(p)->_ptr++)
/titanic_44/usr/src/ucbhead/
H A Dstdio.h208 extern int __filbuf(FILE *);
233 #define getc(p) (--(p)->_cnt < 0 ? __filbuf(p) : (int)*(p)->_ptr++)
/titanic_44/usr/src/lib/libbc/libc/stdio/4.2/
H A Dfilbuf.c41 __filbuf(FILE *iop) in __filbuf() function
/titanic_44/usr/src/lib/libbc/libc/stdio/sys5/
H A Dfilbuf.c41 __filbuf(FILE *iop) in __filbuf() function
/titanic_44/usr/src/head/
H A Dstdio.h142 using std::__filbuf;
371 ? __filbuf(p) \
/titanic_44/usr/src/tools/tokenize/
H A Dforth_preload.c235 ipose(__filbuf)
/titanic_44/usr/src/lib/libc/inc/
H A Dstdiom.h147 extern int __filbuf(FILE *);
/titanic_44/usr/src/lib/libc/port/
H A Dmapfile-vers2215 __filbuf;