Lines Matching refs:__p
673 _ELIDABLE_INLINE int _sgetc( FILE *__p);
675 _ELIDABLE_INLINE int _sgetc( FILE *__p) in _sgetc() argument
677 int __c = _sgetc_raw( __p); in _sgetc()
678 if ((__p->_flags & __SCLE) && (__c == '\r')) in _sgetc()
680 int __c2 = _sgetc_raw( __p); in _sgetc()
684 ungetc(__c2, __p); in _sgetc()
689 #define _sgetc( __p) _sgetc_raw( __p) argument
707 #define _sputc_raw( __c, __p) \ argument
708 (--(__p)->_w < 0 ? \
709 (__p)->_w >= (__p)->_lbfsize ? \
710 (*(__p)->_p = (__c)), *(__p)->_p != '\n' ? \
711 (int)*(__p)->_p++ : \
712 _swbuf( '\n', __p) : \
713 _swbuf( (int)(__c), __p) : \
714 (*(__p)->_p = (__c), (int)*(__p)->_p++))
716 #define _sputc( __c, __p) \ argument
717 ((((__p)->_flags & __SCLE) && ((__c) == '\n')) \
718 ? _sputc_raw( '\r', (__p)) : 0 , \
719 _sputc_raw( (__c), (__p)))
721 #define _sputc( __c, __p) _sputc_raw( __c, __p) argument