HomeSort by relevance Sort by last modified time
    Searched refs:getc (Results 26 - 50 of 59) sorted by null

12 3

  /external/jpeg/
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);
wrjpgcom.c 78 #define NEXTBYTE() getc(infile)
546 while ((c = getc(src_file)) != EOF) {
rdbmp.c 74 if ((c = getc(infile)) == EOF)
210 if ((c = getc(infile)) == EOF)
rdjpgcom.c 64 #define NEXTBYTE() getc(infile)
cjpeg.c 92 if ((c = getc(infile)) == EOF)
  /external/dropbear/
cli-kex.c 136 response = getc(tty);
139 response = getc(stdin);
  /external/e2fsprogs/intl/
relocatable.c 335 while (c = getc (fp), c != EOF && c != '\n' && c != '/')
354 while (c = getc (fp), c != EOF && c != '\n')
  /external/quake/quake/src/WinQuake/
cl_demo.cpp 311 while ((c = getc(cls.demofile)) != '\n')
  /system/core/toolbox/
cat.c 59 for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
  /external/libpcap/
scanner.l 71 #undef getc
72 #define getc(fp) (*in_buffer == 0 ? EOF : *in_buffer++)
scanner.c 204 * if we're using stdio for input, then we want to use getc()
2490 #undef getc macro
2491 #define getc macro
    [all...]
  /external/oprofile/libutil/
op_fileio.c 137 switch (c = getc(fp)) {
  /dalvik/tools/dmtracedump/
TraceDump.c 1116 val = getc(fp);
1117 val |= getc(fp) << 8;
1124 val = getc(fp);
1125 val |= getc(fp) << 8;
1126 val |= getc(fp) << 16;
1127 val |= getc(fp) << 24;
1134 val = getc(fp);
1135 val |= (unsigned long long) getc(fp) << 8;
1136 val |= (unsigned long long) getc(fp) << 16;
1137 val |= (unsigned long long) getc(fp) << 24
    [all...]
  /external/v8/src/
platform-linux.cc 339 c = getc(fp);
364 c = getc(fp);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 77 # undef getc macro
78 # define getc(Stream) getc_unlocked (Stream) macro
  /external/zlib/examples/
zran.c 276 ret = getc(in);
  /external/elfutils/src/
ldlex.c 187 * if we're using stdio for input, then we want to use getc()
1029 #undef getc macro
1030 #define getc macro
    [all...]
  /external/ppp/pppd/
options.c 1131 c = getc(f);
1188 c = getc(f);
1204 c = getc(f);
1240 c = getc(f);
1251 c = getc(f);
1257 c = getc (f);
1278 c = getc(f);
    [all...]
  /external/dnsmasq/src/
cache.c 712 if ((c = getc(f)) == '#')
714 c = getc(f);
736 if ((c = getc(f)) == EOF)
    [all...]
  /bionic/libc/stdlib/
wchar.c 179 return getc(stream);