Home | History | Annotate | Download | only in Include

Lines Matching defs:_p

216  * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.

220 unsigned char *_p; /**< current position in (some) buffer */
241 unsigned char *_up; /**< saved _p when _p is doing ungetc data */
275 #define __SMOD 0x2000 /**< true => fgetln modified _p text */
1572 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
1575 static __inline int __sputc(int _c, FILE *_p) {
1576 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
1577 return (*_p->_p++ = _c);
1579 return (__swbuf(_c, _p));
1588 (*(p)->_p = (unsigned char)(c)), *(p)->_p != '\n' ? \
1589 (int)*(p)->_p++ : \
1592 (*(p)->_p = (unsigned char)(c), (int)*(p)->_p++))