HomeSort by relevance Sort by last modified time
    Searched refs:ungetc (Results 1 - 25 of 37) sorted by null

1 2

  /bionic/libstdc++/include/
cstdio 84 using ::ungetc;
  /external/chromium_org/third_party/icu/source/tools/toolutil/
filestrm.c 17 * 03/02/99 stephen Reordered params in ungetc to match stdio
139 int32_t c = ungetc(ch, (FILE*)fileStream);
147 return ungetc(c, (FILE*)fileStream);
  /external/icu/icu4c/source/tools/toolutil/
filestrm.c 17 * 03/02/99 stephen Reordered params in ungetc to match stdio
139 int32_t c = ungetc(ch, (FILE*)fileStream);
147 return ungetc(c, (FILE*)fileStream);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfscanf.c 451 ungetc(buf[n],
554 ungetc(buf[n],
720 (void) ungetc(*(u_char *)--p, fp);
726 (void) ungetc(c, fp);
826 ungetc(*(u_char *)--p, fp);
832 (void) ungetc(c, fp);/* sign */
835 (void) ungetc(c, fp);
ungetc.c 1 /* $OpenBSD: ungetc.c,v 1.12 2009/11/09 00:18:27 kurt Exp $ */
41 * Expand the ungetc buffer `in place'. That is, adjust fp->_p when
79 ungetc(int c, FILE *fp) function
108 * If we are in the middle of ungetc'ing, just continue.
109 * This may require expanding the current ungetc buffer.
133 * Create an ungetc buffer.
  /external/libpcap/lbl/
os-sunos4.h 41 int ungetc(int, FILE *);
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
stdio.pxd 72 int ungetc (int c, FILE *stream)
  /bionic/libc/include/
stdio.h 93 * _ub, _up, and _ur are used when ungetc() pushes back more characters
94 * than fit in the current _bf, or when ungetc() pushes back a character
96 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
125 /* data for long sequences of ungetc() */
126 unsigned char *_up; /* saved _p when _p is doing ungetc data */
127 int _ur; /* saved _r when _r is counting ungetc data */
130 unsigned char _ubuf[3]; /* guarantee an ungetc() buffer */
252 int ungetc(int, FILE *);
  /development/ndk/platforms/android-3/include/
stdio.h 89 * _ub, _up, and _ur are used when ungetc() pushes back more characters
90 * than fit in the current _bf, or when ungetc() pushes back a character
92 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
116 /* data for long sequences of ungetc() */
117 unsigned char *_up; /* saved _p when _p is doing ungetc data */
118 int _ur; /* saved _r when _r is counting ungetc data */
121 unsigned char _ubuf[3]; /* guarantee an ungetc() buffer */
248 int ungetc(int, FILE *);
  /development/ndk/platforms/android-8/include/
stdio.h 89 * _ub, _up, and _ur are used when ungetc() pushes back more characters
90 * than fit in the current _bf, or when ungetc() pushes back a character
92 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
116 /* data for long sequences of ungetc() */
117 unsigned char *_up; /* saved _p when _p is doing ungetc data */
118 int _ur; /* saved _r when _r is counting ungetc data */
121 unsigned char _ubuf[3]; /* guarantee an ungetc() buffer */
248 int ungetc(int, FILE *);
  /development/ndk/platforms/android-L/include/
stdio.h 84 * _ub, _up, and _ur are used when ungetc() pushes back more characters
85 * than fit in the current _bf, or when ungetc() pushes back a character
87 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
111 /* data for long sequences of ungetc() */
112 unsigned char *_up; /* saved _p when _p is doing ungetc data */
113 int _ur; /* saved _r when _r is counting ungetc data */
116 unsigned char _ubuf[3]; /* guarantee an ungetc() buffer */
247 int ungetc(int, FILE *);
  /external/bison/etc/
bench.pl.in 234 ungetc (c, input);
  /external/bison/lib/
localcharset.c 210 ungetc (c, fp);
  /external/chromium_org/third_party/libjpeg_turbo/
bmp.c 129 if((tempc=getc(file))<0 || ungetc(tempc, file)==EOF)
rdswitch.c 154 if (ungetc(ch, file) == EOF)
  /external/chromium_org/v8/src/base/platform/
platform-cygwin.cc 141 ungetc(c, fp); // Push the '/' back into the stream to be read below.
platform-linux.cc 235 ungetc(c, fp);
platform-openbsd.cc 148 ungetc(c, fp); // Push the '/' back into the stream to be read below.
  /external/e2fsprogs/intl/
localcharset.c 168 ungetc (c, fp);
relocatable.c 342 ungetc (c, fp);
  /external/jpeg/
rdswitch.c 142 if (ungetc(ch, file) == EOF)
cjpeg.c 56 * guarantee that more than one character can be pushed back with ungetc.
94 if (ungetc(c, infile) == EOF)
  /external/libcxx/test/depr/depr.c.headers/
stdio_h.pass.cpp 124 static_assert((std::is_same<decltype(ungetc(0,fp)), int>::value), "");
  /external/libcxx/test/input.output/file.streams/c.files/
cstdio.disabled.cpp 127 static_assert((std::is_same<decltype(std::ungetc(0,fp)), int>::value), "");
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
config.c 41 ungetc(c, f);

Completed in 854 milliseconds

1 2