/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
|
/toolchain/binutils/binutils-2.25/intl/ |
log.c | 35 putc ('"', stream); 47 putc ('\\', stream); 48 putc (*str, stream); 50 putc ('"', stream); 103 putc ('\n', logfile);
|
/external/iproute2/lib/ |
json_writer.c | 46 putc('\n', self->out); 54 putc(self->sep, self->out); 63 putc('"', self->out); 91 putc(*str, self->out); 93 putc('"', self->out); 105 putc('{', self->out); 132 putc(c, self->out); 144 putc(c, self->out); 156 putc(':', self->out); 158 putc(' ', self->out) [all...] |
/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-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/ |
jsmin.c | 135 putc(theA, stdout); 140 putc(theA, stdout); 146 putc(theA, stdout); 162 putc(theA, stdout); 163 putc(theB, stdout); 168 putc(theA, stdout); 174 putc(theA, stdout); 186 putc(theA, stdout); 194 putc(theA, stdout);
|
/external/libjpeg-turbo/ |
wrgif.c | 205 putc(w & 0xFF, dinfo->pub.output_file); 206 putc((w >> 8) & 0xFF, dinfo->pub.output_file); 214 putc(val, dinfo->pub.output_file); 215 putc(val, dinfo->pub.output_file); 216 putc(val, dinfo->pub.output_file); 244 putc('G', dinfo->pub.output_file); 245 putc('I', dinfo->pub.output_file); 246 putc('F', dinfo->pub.output_file); 247 putc('8', dinfo->pub.output_file); 248 putc('7', dinfo->pub.output_file) [all...] |
wrbmp.c | 342 putc(GETJSAMPLE(colormap[2][i]), outfile); 343 putc(GETJSAMPLE(colormap[1][i]), outfile); 344 putc(GETJSAMPLE(colormap[0][i]), outfile); 346 putc(0, outfile); 351 putc(GETJSAMPLE(colormap[0][i]), outfile); 352 putc(GETJSAMPLE(colormap[0][i]), outfile); 353 putc(GETJSAMPLE(colormap[0][i]), outfile); 355 putc(0, outfile); 361 putc(i, outfile); 362 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 168 using ::putc;
|
/toolchain/binutils/binutils-2.25/gas/ |
depend.c | 110 putc ('\\', file); 117 putc ('\\', file); 123 putc (c, file); 135 putc (c, file); 167 putc (spacer, f); 176 putc (spacer, f); 204 putc ('\n', f);
|
/art/tools/dmtracedump/ |
createtesttrace.cc | 307 putc(val & 0xff, fp); 308 putc(val >> 8, fp); 312 putc(val & 0xff, fp); 313 putc((val >> 8) & 0xff, fp); 314 putc((val >> 16) & 0xff, fp); 315 putc((val >> 24) & 0xff, fp); 319 putc(val & 0xff, fp); 320 putc((val >> 8) & 0xff, fp); 321 putc((val >> 16) & 0xff, fp); 322 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/current/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...] |
/bionic/libc/bionic/ |
error.cpp | 56 putc('\n', stderr); 66 putc(' ', stderr);
|
/external/rmi4utils/f54test/ |
display.cpp | 118 putc(*p, stdout); 122 putc('\n', stdout);
|
/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/current/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
|
/toolchain/binutils/binutils-2.25/gold/ |
mapfile.cc | 95 putc('\n', this->map_file_); 100 putc(' ', this->map_file_); 149 putc('\n', this->map_file_); 177 putc(' ', this->map_file_); 221 putc(' ', this->map_file_); 238 putc(' ', this->map_file_); 326 putc(' ', this->map_file_); 409 putc('\n', this->map_file_);
|
/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...] |