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

1 2 3 4 5 6 7 8

  /system/core/sh/
show.c 100 putc('\n', fp);
111 putc('\n', fp);
116 putc('\n', fp);
180 putc(*++p, fp);
183 putc('$', fp);
184 putc('{', fp);
187 putc('#', fp);
190 putc(*p++, fp);
193 putc(':', fp);
197 putc('}', fp)
    [all...]
  /bionic/libc/stdio/
fputc.c 40 return (putc(c, fp));
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
putc.c 34 static char sccsid[] = "@(#)putc.c 8.1 (Berkeley) 6/4/93";
45 #undef putc macro
49 putc(int c, FILE *fp) function
  /external/bison/lib/
bitsetv-print.c 41 putc (i / 10 ? '0' + i / 10 : ' ', out);
42 putc ('\n', out);
46 putc ('\n', out);
51 putc ('-', out);
66 putc ('-', out);
unlocked-io.h 114 # undef putc macro
115 # define putc(x,y) putc_unlocked (x,y) macro
117 # define putc_unlocked(x,y) putc (x,y)
  /external/e2fsprogs/intl/
log.c 33 putc ('"', stream);
45 putc ('\\', stream);
46 putc (*str, stream);
48 putc ('"', stream);
97 putc ('\n', logfile);
  /external/e2fsprogs/resize/
sim_progress.c 35 putc(' ', prog->f);
39 putc(' ', prog->f);
42 putc('-', prog->f);
44 putc('\b', prog->f);
64 putc('X', prog->f);
68 putc('\b', prog->f);
70 putc('-', prog->f);
72 putc('\b', prog->f);
  /external/jpeg/
wrgif.c 203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file);
245 putc('8', dinfo->pub.output_file);
246 putc('7', dinfo->pub.output_file)
    [all...]
wrbmp.c 304 putc(GETJSAMPLE(colormap[2][i]), outfile);
305 putc(GETJSAMPLE(colormap[1][i]), outfile);
306 putc(GETJSAMPLE(colormap[0][i]), outfile);
308 putc(0, outfile);
313 putc(GETJSAMPLE(colormap[0][i]), outfile);
314 putc(GETJSAMPLE(colormap[0][i]), outfile);
315 putc(GETJSAMPLE(colormap[0][i]), outfile);
317 putc(0, outfile);
323 putc(i, outfile);
324 putc(i, outfile)
    [all...]
  /external/qemu/distrib/jpeg-6b/
wrgif.c 203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file);
245 putc('8', dinfo->pub.output_file);
246 putc('7', dinfo->pub.output_file)
    [all...]
wrbmp.c 304 putc(GETJSAMPLE(colormap[2][i]), outfile);
305 putc(GETJSAMPLE(colormap[1][i]), outfile);
306 putc(GETJSAMPLE(colormap[0][i]), outfile);
308 putc(0, outfile);
313 putc(GETJSAMPLE(colormap[0][i]), outfile);
314 putc(GETJSAMPLE(colormap[0][i]), outfile);
315 putc(GETJSAMPLE(colormap[0][i]), outfile);
317 putc(0, outfile);
323 putc(i, outfile);
324 putc(i, outfile)
    [all...]
  /external/libgsm/src/
debug.c 35 if (from < to) putc('\n', stderr);
38 putc('\n', stderr);
56 if (from < to) putc('\n', stderr);
59 putc('\n', stderr);
  /sdk/emulator/qtools/
dmtrace.cpp 85 putc(val & 0xff, fstream);
86 putc(val >> 8, fstream);
91 putc(val & 0xff, fstream);
92 putc((val >> 8) & 0xff, fstream);
93 putc((val >> 16) & 0xff, fstream);
94 putc((val >> 24) & 0xff, fstream);
99 putc(val & 0xff, fstream);
100 putc((val >> 8) & 0xff, fstream);
101 putc((val >> 16) & 0xff, fstream);
102 putc((val >> 24) & 0xff, fstream)
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 328 putc(val & 0xff, fp);
329 putc(val >> 8, fp);
334 putc(val & 0xff, fp);
335 putc((val >> 8) & 0xff, fp);
336 putc((val >> 16) & 0xff, fp);
337 putc((val >> 24) & 0xff, fp);
342 putc(val & 0xff, fp);
343 putc((val >> 8) & 0xff, fp);
344 putc((val >> 16) & 0xff, fp);
345 putc((val >> 24) & 0xff, fp)
    [all...]
  /external/zlib/src/examples/
gzjoin.c 56 #include <stdio.h> /* fputs(), fprintf(), fwrite(), putc() */
247 putc(val & 0xff, out);
248 putc((val >> 8) & 0xff, out);
249 putc((val >> 16) & 0xff, out);
250 putc((val >> 24) & 0xff, out);
383 putc(last, out);
389 putc(last, out);
391 putc(0, out); /* two more bits in block header */
398 putc(last | 8, out);
401 putc(last | 0x20, out)
    [all...]
  /system/core/sh/bltin/
bltin.h 50 #undef putc macro
56 #define putc(c, file) outc(c, file) macro
  /ndk/sources/host-tools/sed-4.2.1/lib/
unlocked-io.h 114 # undef putc macro
115 # define putc(x,y) putc_unlocked (x,y) macro
117 # define putc_unlocked(x,y) putc (x,y)
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/
elfos.h 423 putc (ch, (FILE)); \
429 putc ('\\', (FILE)); \
430 putc (escape, (FILE)); \
497 putc (ch, (FILE)); \
505 putc ('\\', (FILE)); \
506 putc (escape, (FILE)); \
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/
elfos.h 423 putc (ch, (FILE)); \
429 putc ('\\', (FILE)); \
430 putc (escape, (FILE)); \
497 putc (ch, (FILE)); \
505 putc ('\\', (FILE)); \
506 putc (escape, (FILE)); \
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/
elfos.h 423 putc (ch, (FILE)); \
429 putc ('\\', (FILE)); \
430 putc (escape, (FILE)); \
497 putc (ch, (FILE)); \
505 putc ('\\', (FILE)); \
506 putc (escape, (FILE)); \
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/
elfos.h 423 putc (ch, (FILE)); \
429 putc ('\\', (FILE)); \
430 putc (escape, (FILE)); \
497 putc (ch, (FILE)); \
505 putc ('\\', (FILE)); \
506 putc (escape, (FILE)); \
  /external/icu4c/samples/cal/
cal.c 395 putc(' ', f);
412 putc(' ', f);
461 putc('\n', stdout);
467 putc('\n', stdout);
507 putc(' ', stdout);
515 putc('\n', stdout);
525 putc('\n', stdout);
587 putc('\n', stdout);
588 putc('\n', stdout);
608 putc('\n', stdout)
    [all...]
  /external/bison/src/
getargs.c 342 putc ('\n', stdout);
359 putc ('\n', stdout);
374 putc ('\n', stdout);
385 putc ('\n', stdout);
394 putc ('\n', stdout);
429 putc ('\n', stdout);
431 putc ('\n', stdout);
  /bionic/libstdc++/include/
cstdio 69 using ::putc;
  /external/stlport/stlport/stl/
_cstdio.h 58 # undef putc macro
91 using _STLP_VENDOR_CSTD::putc;

Completed in 909 milliseconds

1 2 3 4 5 6 7 8