Home | History | Annotate | Download | only in include

Lines Matching defs:_p

93  * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
99 unsigned char *_p; /* current position in (some) buffer */
117 unsigned char *_up; /* saved _p when _p is doing ungetc data */
150 #define __SMOD 0x2000 /* true => fgetln modified _p text */
361 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
363 static __inline int __sputc(int _c, FILE *_p) {
364 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
365 return (*_p->_p++ = _c);
367 return (__swbuf(_c, _p));
376 (*(p)->_p = (c)), *(p)->_p != '\n' ? \
377 (int)*(p)->_p++ : \
380 (*(p)->_p = (c), (int)*(p)->_p++))