Lines Matching refs:__c
595 int (*__readfn)(void *__c, char *__buf,
597 int (*__writefn)(void *__c, const char *__buf,
599 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
600 int (*__closefn)(void *__c));
602 int (*__readfn)(void *__c, char *__buf,
604 int (*__writefn)(void *__c, const char *__buf,
606 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
607 int (*__closefn)(void *__c));
677 int __c = _sgetc_raw( __p); in _sgetc() local
678 if ((__p->_flags & __SCLE) && (__c == '\r')) in _sgetc()
682 __c = __c2; in _sgetc()
686 return __c; in _sgetc()
707 #define _sputc_raw( __c, __p) \ argument
710 (*(__p)->_p = (__c)), *(__p)->_p != '\n' ? \
713 _swbuf( (int)(__c), __p) : \
714 (*(__p)->_p = (__c), (int)*(__p)->_p++))
716 #define _sputc( __c, __p) \ argument
717 ((((__p)->_flags & __SCLE) && ((__c) == '\n')) \
719 _sputc_raw( (__c), (__p)))
721 #define _sputc( __c, __p) _sputc_raw( __c, __p) argument