Searched defs:_p (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/stdio/
H A Dlocal.h128 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
129 static __inline int __sputc(int _c, FILE* _p) { argument
130 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) {
131 return (*_p->_p++ = _c);
133 return (__swbuf(_c, _p));
/bionic/libc/include/
H A Dstdio.h103 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
109 unsigned char *_p; /* current position in (some) buffer */ member in struct:__sFILE
132 unsigned char *_up; /* saved _p when _p is doing ungetc data */
172 #define __SMOD 0x2000 /* true => fgetln modified _p text */

Completed in 187 milliseconds