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

1 2 3 4 5 6 7 8 91011

  /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/upstream-openbsd/lib/libc/stdio/
fputc.c 1 /* $OpenBSD: fputc.c,v 1.10 2009/11/09 00:18:27 kurt 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)
  /frameworks/av/cmds/stagefright/
WaveWriter.h 56 fputc(x & 0xff, mFile);
57 fputc(x >> 8, mFile);
  /external/vboot_reference/tests/futility/
binary_editor.c 36 fputc(c, stdout);
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_output.cpp 35 return EOF != fputc(byte, _file);
  /prebuilts/misc/common/swig/include/2.0.11/guile/
interpreter.i 23 fputc('\n', stderr);
32 fputc('\n', stderr);
  /bionic/tests/
stdio_ext_test.cpp 70 ASSERT_EQ('x', fputc('x', fp));
72 ASSERT_EQ('y', fputc('y', fp));
82 ASSERT_EQ('a', fputc('a', fp));
87 ASSERT_EQ('b', fputc('b', fp));
88 ASSERT_EQ('\n', fputc('\n', fp));
107 ASSERT_EQ('a', fputc('a', fp));
  /external/libvncserver/client_examples/
ppmtest.c 54 fputc((v>>pf->redShift)*256/(pf->redMax+1),f);
55 fputc((v>>pf->greenShift)*256/(pf->greenMax+1),f);
56 fputc((v>>pf->blueShift)*256/(pf->blueMax+1),f);
  /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...]
scan-skel.l 72 "@@" fputc ('@', yyout);
73 "@{" fputc ('[', yyout);
74 "@}" fputc (']', yyout);
  /system/core/libcutils/
open_memstream.c 327 fputc('a', stream);
328 fputc('b', stream);
329 fputc('c', stream);
330 fputc('d', stream);
331 fputc('e', stream);
332 fputc('f', stream);
346 fputc('x', stream);
  /external/libpcap/msdos/
bin2c.c 40 fputc ('\n', outFile);
  /external/libpcap/tests/
reactivatetest.c 80 (void)fputc('\n', stderr);
  /external/toybox/toys/posix/
strings.c 44 if (count == wlen) fputc(toybuf[i], stdout);
  /bionic/libc/bionic/
malloc_info.cpp 34 fputc(' ', fp);
38 fputc('>', fp);
  /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);
  /external/deqp/framework/delibs/deimage/
deTarga.c 164 fputc((deUint8)(c>>0), file);
165 fputc((deUint8)(c>>8), file);
166 fputc((deUint8)(c>>16), file);

Completed in 955 milliseconds

1 2 3 4 5 6 7 8 91011