Searched refs:getc (Results 1 – 18 of 18) sorted by relevance
100 # undef getc101 # define getc(x) getc_unlocked (x) macro103 # define getc_unlocked(x) getc (x)
39 # define getc_maybe_unlocked(fp) getc(fp)45 # define getc_maybe_unlocked(fp) getc(fp)
94 # undef getc95 # define getc getc_unlocked macro165 c = getc (fp); in get_charset_aliases()174 c = getc (fp); in get_charset_aliases()
75 int getc(FILE* stream);111 #ifdef getc112 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(__stream);}113 #undef getc114 inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);}115 #endif // getc202 using ::getc;
121 int __c = getc(__file_);148 int __c = getc(__file_);
21 …-114,12 +114,42 @@ inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(22 inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);}23 #endif // getc
59 # undef getc90 using _STLP_VENDOR_CSTD::getc;
161 int c = getc(_M_file); in underflow()175 int c = getc(_M_file); in uflow()
20 [Define to 1 if you want getc etc. to use unlocked I/O if available.
177 if ((c = getc(yyin)) != EOF) in pgetc()
193 while ((c=getc(inf)) == '\n' && c != EOF) /* skip leading \n's */ in readrec()199 for (; (c=getc(inf)) != sep && c != EOF; ) { in readrec()207 if ((c = getc(inf)) == '\n' || c == EOF) /* 2 in a row */ in readrec()
64 using ::getc;
118 static_assert((std::is_same<decltype(getc(fp)), int>::value), ""); in main()
119 static_assert((std::is_same<decltype(std::getc(fp)), int>::value), ""); in main()
914 if ((ch = getc(input->fp)) != EOF)937 if ((ch = getc(input->fp)) == EOF)
237 ch = getc(prog.file); in inchar()
629 /* Define to 1 if you want getc etc. to use unlocked I/O if available.