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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /ndk/sources/cxx-stl/llvm-libc++/patches.android/
0007-Fix-libc-compiler-error-when-calling-std-feof.patch 31 #ifdef putc
32 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);}
33 #undef putc
34 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
35 #endif // putc
0008-Remove-gcc-warning-about-redefinition-of-putchar-wit.patch 24 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
25 #endif // putc
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
putc.c 1 /* $OpenBSD: putc.c,v 1.12 2009/11/21 10:11:54 guenther Exp $ */
55 * A subroutine version of the macro putc.
57 #undef putc macro
60 putc(int c, FILE *fp) function
  /external/chromium_org/third_party/libjpeg_turbo/
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/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/libcxx/include/
cstdio 78 int putc(int c, FILE* stream);
117 #ifdef putc
118 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);}
119 #undef putc
120 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
121 #endif // putc
164 using ::putc;
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdio 78 int putc(int c, FILE* stream);
123 #ifdef putc
124 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);}
125 #undef putc
126 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
127 #endif // putc
207 using ::putc;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdio 78 int putc(int c, FILE* stream);
123 #ifdef putc
124 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);}
125 #undef putc
126 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
127 #endif // putc
207 using ::putc;
  /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)
  /ndk/sources/android/support/include/
stdio.h 37 // This is to avoid a compiler error when the putc() macro definition
38 // in <stdio.h> follows a putc() function definition which is apparently
  /prebuilts/ndk/9/sources/android/support/include/
stdio.h 37 // This is to avoid a compiler error when the putc() macro definition
38 // in <stdio.h> follows a putc() function definition which is apparently
  /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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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...]

Completed in 775 milliseconds

1 2 3 4 5 6 7 8 91011>>