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

1 2 3 4

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetc.c 39 return (getc(fp));
getchar.c 57 return (getc(stdin));
getc.c 1 /* $OpenBSD: getc.c,v 1.9 2009/11/09 00:18:27 kurt Exp $ */
49 * A subroutine version of the macro getc.
51 #undef getc macro
54 getc(FILE *fp) function
  /external/chromium_org/third_party/angle/src/compiler/translator/
MMap.h 23 char c = getc(fp);
27 c = getc(fp);
34 c = getc(fp);
37 c = getc(fp);
  /external/libpcap/
etherent.c 82 c = getc(f);
95 c = getc(f);
125 c = getc(fp);
129 c = getc(fp);
134 c = getc(fp);
161 c = getc(fp);
  /external/chromium_org/third_party/libjpeg_turbo/
rdcolmap.c 88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
127 ch = getc(infile);
130 ch = getc(infile);
178 c = getc(infile); /* save format discriminator for a sec */
207 R = getc(infile);
208 G = getc(infile);
209 B = getc(infile)
    [all...]
rdppm.c 60 * On most systems, reading individual bytes with getc() is drastically less
65 * model, or else replace fread() with a getc() loop --- which will be much
91 ch = getc(infile);
94 ch = getc(infile);
304 if (getc(source->pub.input_file) != 'P')
307 c = getc(source->pub.input_file); /* subformat discriminator character */
rdswitch.c 30 ch = getc(file);
33 ch = getc(file);
rdtarga.c 94 if ((c = getc(infile)) == EOF)
130 sinfo->tga_pixel[i] = (U_CHAR) getc(infile);
161 sinfo->tga_pixel[i] = (U_CHAR) getc(infile);
  /external/jpeg/
rdcolmap.c 88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
127 ch = getc(infile);
130 ch = getc(infile);
178 c = getc(infile); /* save format discriminator for a sec */
207 R = getc(infile);
208 G = getc(infile);
209 B = getc(infile)
    [all...]
rdppm.c 59 * On most systems, reading individual bytes with getc() is drastically less
64 * model, or else replace fread() with a getc() loop --- which will be much
90 ch = getc(infile);
93 ch = getc(infile);
303 if (getc(source->pub.input_file) != 'P')
306 c = getc(source->pub.input_file); /* subformat discriminator character */
rdswitch.c 27 ch = getc(file);
30 ch = getc(file);
rdtarga.c 94 if ((c = getc(infile)) == EOF)
130 sinfo->tga_pixel[i] = (U_CHAR) getc(infile);
161 sinfo->tga_pixel[i] = (U_CHAR) getc(infile);
  /external/bison/lib/
unlocked-io.h 100 # undef getc macro
101 # define getc(x) getc_unlocked (x) macro
103 # define getc_unlocked(x) getc (x)
getdelim.c 39 # define getc_maybe_unlocked(fp) getc(fp)
45 # define getc_maybe_unlocked(fp) getc(fp)
localcharset.c 98 # undef getc macro
99 # define getc getc_unlocked macro
195 c = getc (fp);
204 c = getc (fp);
  /external/e2fsprogs/intl/
localcharset.c 90 # undef getc macro
91 # define getc getc_unlocked macro
153 c = getc (fp);
162 c = getc (fp);
relocatable.c 335 while (c = getc (fp), c != EOF && c != '\n' && c != '/')
354 while (c = getc (fp), c != EOF && c != '\n')
  /bionic/libstdc++/include/
cstdio 64 using ::getc;
  /external/libpng/contrib/tools/
checksum-icc.c 28 int ch = getc(ip);
  /development/ndk/platforms/android-3/include/
stdio.h 81 * This ensures that the getc and putc macros (or inline functions) never
100 int _r; /* read space left for getc() */
122 unsigned char _nbuf[1]; /* guarantee a getc() buffer */
224 int getc(FILE *);
401 #define getc(fp) __sgetc(fp) macro
416 #define getchar() getc(stdin)
  /development/ndk/platforms/android-8/include/
stdio.h 81 * This ensures that the getc and putc macros (or inline functions) never
100 int _r; /* read space left for getc() */
122 unsigned char _nbuf[1]; /* guarantee a getc() buffer */
224 int getc(FILE *);
401 #define getc(fp) __sgetc(fp) macro
416 #define getchar() getc(stdin)
  /external/elfutils/0.153/src/
ldlex.l 47 #undef getc
48 #define getc(s) getc_unlocked (s)
  /external/chromium_org/v8/src/base/platform/
platform-cygwin.cc 135 c = getc(fp);
160 c = getc(fp);
  /dalvik/tools/dmtracedump/
TraceDump.c 1035 val = getc(fp);
1036 val |= getc(fp) << 8;
1043 val = getc(fp);
1044 val |= getc(fp) << 8;
1045 val |= getc(fp) << 16;
1046 val |= getc(fp) << 24;
1053 val = getc(fp);
1054 val |= (unsigned long long) getc(fp) << 8;
1055 val |= (unsigned long long) getc(fp) << 16;
1056 val |= (unsigned long long) getc(fp) << 24
    [all...]

Completed in 3579 milliseconds

1 2 3 4