HomeSort by relevance Sort by last modified time
    Searched refs:getc (Results 126 - 150 of 238) sorted by null

1 2 3 4 56 7 8 910

  /external/qemu/distrib/jpeg-6b/
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)
  /external/chromium_org/third_party/libjpeg_turbo/
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) {
bmp.c 129 if((tempc=getc(file))<0 || ungetc(tempc, file)==EOF)
  /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);
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)
  /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...]
  /external/iputils/
tftpsubs.c 150 c = getc(file);
  /external/libpng/contrib/libtests/
timepng.c 190 ch = getc(ip);
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
stdio.pxd 71 int getc (FILE *stream)
  /external/chromium_org/v8/src/base/platform/
platform-linux.cc 228 c = getc(fp);
254 c = getc(fp);
platform-openbsd.cc 142 c = getc(fp);
167 c = getc(fp);
  /bionic/tests/
stdio_test.cpp 505 TEST(stdio, getc) {
508 ASSERT_EQ('L', getc(fp));
509 ASSERT_EQ('i', getc(fp));
510 ASSERT_EQ('n', getc(fp));
511 ASSERT_EQ('u', getc(fp));
512 ASSERT_EQ('x', getc(fp));
  /external/bison/darwin-lib/
stdio.h 926 _GL_CXXALIASWARN (getc); variable
    [all...]
  /external/bison/linux-lib/
stdio.h 926 _GL_CXXALIASWARN (getc); variable
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lib.c 193 while ((c=getc(inf)) == '\n' && c != EOF) /* skip leading \n's */
199 for (; (c=getc(inf)) != sep && c != EOF; ) {
207 if ((c = getc(inf)) == '\n' || c == EOF) /* 2 in a row */
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 339 case c = @buffer.getc
341 nc = @buffer.getc
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlkw.swg 91 PERLBN(getc);
  /bionic/libc/include/
stdio.h 85 * This ensures that the getc and putc macros (or inline functions) never
104 int _r; /* read space left for getc() */
131 unsigned char _nbuf[1]; /* guarantee a getc() buffer */
231 int getc(FILE *);
  /development/ndk/platforms/android-L/include/
stdio.h 76 * This ensures that the getc and putc macros (or inline functions) never
95 int _r; /* read space left for getc() */
117 unsigned char _nbuf[1]; /* guarantee a getc() buffer */
220 int getc(FILE *);
  /external/bison/etc/
bench.pl.in 227 return getc (input);

Completed in 597 milliseconds

1 2 3 4 56 7 8 910