Lines Matching refs:__p
293 #define __swputc_raw(__c, __p) \ argument
294 (--(__p)->_w < 0 ? \
295 (__p)->_w >= (__p)->_lbfsize ? \
296 (*(__p)->_p = (__c)), *(__p)->_p != '\n' ? \
297 (int)*(__p)->_p++ : \
298 __swbufw('\n', __p) : \
299 __swbufw((int)(__c), __p) : \
300 (*(__p)->_p = (__c), (int)*(__p)->_p++))
302 #define __swputc(__c, __p) \ argument
303 ((((__p)->_flags & __SCLE) && ((__c) == '\n')) \
304 ? __swputc_raw('\r', (__p)) : 0 , \
305 __swputc_raw((__c), (__p)))
307 #define __swputc(__c, __p) __swputc_raw(__c, __p) argument