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

1 2 3 4 5 6 7 8 910

  /bootable/recovery/applypatch/
utils.c 23 fputc(value & 0xff, f);
24 fputc((value >> 8) & 0xff, f);
25 fputc((value >> 16) & 0xff, f);
26 fputc((value >> 24) & 0xff, f);
31 fputc(value & 0xff, f);
32 fputc((value >> 8) & 0xff, f);
33 fputc((value >> 16) & 0xff, f);
34 fputc((value >> 24) & 0xff, f);
35 fputc((value >> 32) & 0xff, f);
36 fputc((value >> 40) & 0xff, f)
    [all...]
  /bionic/libc/stdio/
fputc.c 1 /* $OpenBSD: fputc.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */
38 fputc(int c, FILE *fp) function
  /external/bison/lib/
yyerror.c 30 fputc ('\n', stderr);
unlocked-io.h 72 # undef fputc macro
73 # define fputc(x,y) fputc_unlocked (x,y) macro
75 # define fputc_unlocked(x,y) fputc (x,y)
  /development/tools/yuv420sp2rgb/
debug.c 11 fputc('\n', s);
24 fputc(pchr[last], s);
26 fputc('.', s);
  /frameworks/wilhelm/tools/mphtogen/
mphtogen.c 34 fputc(',', fp);
38 fputc('\n', fp);
45 fputc('\n', fp);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 12 int fputc(int, FILE *);
  /frameworks/wilhelm/src/
sllog.h 88 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
95 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
102 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
109 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
116 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
  /external/qemu/slirp/
debug.h 23 #define DEBUG_ARG(x, y) if (slirp_debug & DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); }
  /external/qemu/slirp-android/
debug.h 23 #define DEBUG_ARG(x, y) if (slirp_debug & DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); }
  /frameworks/av/cmds/stagefright/
WaveWriter.h 56 fputc(x & 0xff, mFile);
57 fputc(x >> 8, mFile);
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_output.cpp 35 return EOF != fputc(byte, _file);
  /external/dropbear/libtommath/
bn_mp_fwrite.c 38 if (fputc(buf[x], stream) == EOF) {
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 115 return fputc (c, stdout);
119 fputc (int c, FILE *stream) function
120 #undef fputc macro
122 CALL_WITH_SIGPIPE_EMULATION (int, fputc (c, stream), ret == EOF)
unlocked-io.h 72 # undef fputc macro
73 # define fputc(x,y) fputc_unlocked (x,y) macro
75 # define fputc_unlocked(x,y) fputc (x,y)
  /external/chromium_org/third_party/yasm/source/patched-yasm/
genstring.c 86 fputc('\\', out);
87 fputc(*strp, out);
  /external/clang/test/Analysis/
simple-stream-checks.c 12 fputc(*Data, F);
76 fputc(*Data, F);
  /external/bison/src/
print.c 89 fputc ('\n', out);
118 fputc ('\n', out);
148 fputc ('\n', out);
163 fputc (' ', out);
192 fputc ('\n', out);
203 fputc (' ', out);
223 fputc (' ', out);
225 fputc ('[', out);
231 fputc (']', out);
232 fputc ('\n', out)
    [all...]
  /system/core/libcutils/
open_memstream.c 335 fputc('a', stream);
336 fputc('b', stream);
337 fputc('c', stream);
338 fputc('d', stream);
339 fputc('e', stream);
340 fputc('f', stream);
354 fputc('x', stream);
  /external/e2fsprogs/debugfs/
unused.c 55 fputc(buf[i], stdout);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
linux-elf.h 94 fputc ('\n', FILE); \
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
linux-elf.h 94 fputc ('\n', FILE); \
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
genmacro.c 117 fputc('\\', out);
118 fputc(*strp, out);
  /external/e2fsprogs/lib/et/
com_err.c 59 fputc('\r', stderr);
60 fputc('\n', stderr);
  /external/e2fsprogs/misc/
blkid.c 86 fputc('^', stdout);
89 fputc(ch, stdout);
125 fputc('\n', stdout);
130 fputc(' ', stdout);
165 fputc('\n', stdout);
181 fputc('-', stdout);
182 fputc('\n', stdout);
249 fputc('\n', stdout);

Completed in 272 milliseconds

1 2 3 4 5 6 7 8 910