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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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/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);
  /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);
  /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...]
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdio 78 int putc(int c, FILE* stream);
112 #ifdef putc
113 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);}
114 #undef putc
115 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
116 #endif // putc
157 using ::putc;
  /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
  /ndk/sources/android/support/include/
stdio.h 31 // This is to avoid a compiler error when the putc() macro definition
32 // in <stdio.h> follows a putc() function definition which is apparently
  /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...]
  /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)
  /external/libvpx/libvpx/examples/
decode_with_partial_drops.txt 69 putc('|', stdout);
83 putc('.', stdout);
95 putc('.', stdout);
100 putc('X', stdout);
226 putc('X', stdout);
231 putc('.', stdout);
decode_with_drops.txt 68 putc('X', stdout);
71 putc('.', stdout);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/
modula.re 186 putc(*s++, o);
196 putc('<', stdout);
198 putc('>', stdout);
199 putc('\n', stdout);
  /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...]
  /bionic/libc/include/
stdio.h 76 * This ensures that the getc and putc macros (or inline functions) never
96 int _w; /* write space left for putc() */
100 int _lbfsize; /* 0 or -_bf._size, for inline putc */
235 int putc(int, FILE *);
414 * The macro implementations of putc and putc_unlocked are not
417 #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp)) macro
424 * The macro implementations of putc and putc_unlocked are not
434 #define putchar(x) putc(x, stdout)
  /bionic/libc/stdio/
wbuf.c 53 * If we did not do this, a sufficient number of putc()
69 * guarantees that putc() will always call wbuf() by setting _w
  /external/stlport/stlport/stl/
_cstdio.h 58 # undef putc macro
91 using _STLP_VENDOR_CSTD::putc;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 58 # undef putc macro
91 using _STLP_VENDOR_CSTD::putc;

Completed in 1357 milliseconds

1 2 3 4 5 6 7 8 91011>>