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

12 3 4

  /system/extras/tests/bionic/libstdc++/
test_cstdio.cpp 124 using std::getc;
  /external/dropbear/
cli-kex.c 136 response = getc(tty);
139 response = getc(stdin);
  /external/elfutils/src/
ldlex.l 35 #undef getc
36 #define getc(s) getc_unlocked (s)
  /external/stlport/src/
stdio_streambuf.cpp 161 int c = getc(_M_file);
175 int c = getc(_M_file);
  /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/jpeg/
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);
rdswitch.c 27 ch = getc(file);
30 ch = getc(file);
rdbmp.c 74 if ((c = getc(infile)) == EOF)
210 if ((c = getc(infile)) == EOF)
wrjpgcom.c 78 #define NEXTBYTE() getc(infile)
546 while ((c = getc(src_file)) != EOF) {
rdjpgcom.c 64 #define NEXTBYTE() getc(infile)
  /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/oprofile/libutil/
op_fileio.c 137 switch (c = getc(fp)) {
  /system/core/toolbox/
cat.c 59 for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
  /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/libpcap/
scanner.l 71 #undef getc
72 #define getc(fp) (*in_buffer == 0 ? EOF : *in_buffer++)
  /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);
  /external/quake/quake/src/WinQuake/
cl_demo.cpp 311 while ((c = getc(cls.demofile)) != '\n')
  /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/bison/
config.h 333 /* Define to 1 if you want getc etc. to use unlocked I/O if available.
config.hin 332 /* Define to 1 if you want getc etc. to use unlocked I/O if available.
  /external/bluetooth/glib/gio/xdgmime/
xdgmimemagic.c 51 # define getc_unlocked(fp) getc (fp)
  /external/zlib/examples/
zran.c 276 ret = getc(in);
  /external/bluetooth/bluez/rfcomm/
lexer.c 204 * if we're using stdio for input, then we want to use getc()
580 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
    [all...]

Completed in 670 milliseconds

12 3 4