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

1 2 3 4 5

  /external/syslinux/com32/lib/
fgetc.c 2 * fgetc.c
4 * Extremely slow fgetc implementation, using _fread(). If people
14 int fgetc(FILE * f) function
  /external/libpng/contrib/mips-msa/
linux.c 39 int ch = fgetc(f);
45 ch = fgetc(f);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fgetc.c 2 Implementation of fgetc as declared in <stdio.h>.
43 NetBSD: fgetc.c,v 1.11 2003/08/07 16:43:22 agc Exp
44 fgetc.c 8.1 (Berkeley) 6/4/93
55 fgetc(FILE *fp) function
  /prebuilts/go/darwin-x86/misc/swig/stdio/
file.swig 24 int fgetc(FILE *);
  /prebuilts/go/linux-x86/misc/swig/stdio/
file.swig 24 int fgetc(FILE *);
  /external/libgsm/src/
toast_audio.c 61 if ( fgetc(in) != '.'
62 || fgetc(in) != 's'
63 || fgetc(in) != 'n'
64 || fgetc(in) != 'd'
toast_alaw.c 321 for (i = 0; i < 160 && (c = fgetc(in)) != EOF; i++) buf[i] = A2S( c );
toast_ulaw.c     [all...]
  /external/vboot_reference/tests/futility/
binary_editor.c 29 for ( curpos = 0; (c = fgetc(stdin)) != EOF; curpos++) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SplitFile/
splitfile.c 130 CharC = (char) fgetc (In);
139 CharC = (char) fgetc (In);
  /external/libpcap/msdos/
bin2c.c 34 while ((ch = fgetc(inFile)) != EOF)
  /external/toybox/toys/other/
xxd.c 142 if ((n1 = n2 = dehex(fgetc(fp))) < 0 || (n2 = dehex(fgetc(fp))) < 0) {
153 tmp = fgetc(fp);
158 while ((tmp = fgetc(fp)) != EOF && tmp != '\n')
  /external/libese/tools/ese_replay/
buffer.c 44 char c = fgetc(fp);
55 b->buffer[b->len] = fgetc(fp);
  /external/syslinux/com32/include/
stdio.h 66 __extern int fgetc(FILE *);
68 #define getc(f) fgetc(f)
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cstdio 50 using ::fgetc;
  /device/google/marlin/dataservices/datatop/src/
datatop_fileops.c 162 rc = fgetc(file);
  /external/libpng/contrib/arm-neon/
linux.c 45 int ch = fgetc(f);
  /external/lzma/CPP/Common/
StdInStream.cpp 90 int c = fgetc(_stream); // getc() doesn't work in BeOS?
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 519 BOMC1 = fgetc(fFile);
520 BOMC2 = fgetc(fFile);
526 else if (BOMC1 == 0xEF && BOMC2 == 0xBB && (BOMC3 = fgetc(fFile)) == 0xBF ) {
550 cL = fgetc(fFile);
551 cH = fgetc(fFile);
562 cH = fgetc(fFile);
563 cL = fgetc(fFile);
579 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
608 bytes[i] = fgetc(fFile);
  /external/ImageMagick/MagickWand/
script-token.c 324 c=fgetc(token_info->stream); \
327 c=fgetc(token_info->stream); \
  /external/icu/icu4c/source/tools/toolutil/
filestrm.cpp 133 int c = fgetc((FILE*)fileStream);
148 int32_t c = fgetc((FILE*)fileStream);
  /external/syslinux/com32/modules/
hexdump.c 177 i = fgetc(stdin);
188 i = fgetc(stdin);
zzjson.c 35 (int(*)(void*)) fgetc,
  /external/iw/
vendor.c 20 while ((data = fgetc(file)) != EOF) {
  /system/extras/ext4_utils/
blk_alloc_to_base_fs.c 61 while ((c = fgetc(blk_alloc_file)) != EOF) {

Completed in 270 milliseconds

1 2 3 4 5