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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
bindings.c 3 /* putchard - putchar that takes a double and returns 0. */
5 putchar((char)X);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
bindings.c 3 /* putchard - putchar that takes a double and returns 0. */
5 putchar((char)X);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
bindings.c 3 /* putchard - putchar that takes a double and returns 0. */
5 putchar((char)X);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
bindings.c 3 /* putchard - putchar that takes a double and returns 0. */
5 putchar((char)X);
  /ndk/sources/cxx-stl/llvm-libc++/patches.android/
0008-Remove-gcc-warning-about-redefinition-of-putchar-wit.patch 4 Subject: [PATCH 08/12] Remove gcc warning about redefinition of putchar with
7 In NDK bionic's stdio.h, putchar appears as both a function prototype and a macro
12 int putchar(int);
14 Undefine putchar to avoid redefinition, and putchar does exist in libc.so
28 +// In bionic's stdio.h, putchar appears as both a function prototype and a macro (later
33 +// int putchar(int);
35 +// Undefine putchar to avoid redefinition, and putchar does exist in libc.so
37 +#undef putchar
    [all...]
0007-Fix-libc-compiler-error-when-calling-std-feof.patch 7 defined in cstdio's std:: getchar, putchar, clearerr, feof, ferror
37 +#ifdef putchar
38 +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
39 +#undef putchar
40 +inline _LIBCPP_INLINE_VISIBILITY int putchar(int __c) {return __libcpp_putchar(__c);}
41 +#endif // putchar
  /external/clang/test/CodeGen/
mandel.c 28 int putchar(char c);
46 putchar(' ');
48 putchar('.');
50 putchar('+');
52 putchar('x');
54 putchar('*');
56 putchar('\n');
  /external/libpng/contrib/libtests/
fakepng.c 8 putchar(val >> 24);
9 putchar(val >> 16);
10 putchar(val >> 8);
11 putchar(val >> 0);
  /external/chromium_org/media/cast/test/utility/
generate_timecode_audio.cc 31 putchar(sample_s16 & 0xff);
32 putchar(sample_s16 >> 8);
33 putchar(sample_s16 & 0xff);
34 putchar(sample_s16 >> 8);
  /ndk/tests/build/issue66668-libc++-std-feof/jni/
issue66668-libc++-std-feof.cpp 7 int b = std::putchar(a);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
putchar.c 1 /* $OpenBSD: putchar.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */
48 #undef putchar macro
51 * A subroutine version of the macro putchar
54 putchar(int c) function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdio 79 int putchar(int c);
130 // In bionic's stdio.h, putchar appears as both a function prototype and a macro (later
135 // int putchar(int);
137 // Undefine putchar to avoid redefinition, and putchar does exist in libc.so
139 #undef putchar
142 #ifdef putchar
143 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
144 #undef putchar
145 inline _LIBCPP_INLINE_VISIBILITY int putchar(int __c) {return __libcpp_putchar(__c);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdio 79 int putchar(int c);
130 // In bionic's stdio.h, putchar appears as both a function prototype and a macro (later
135 // int putchar(int);
137 // Undefine putchar to avoid redefinition, and putchar does exist in libc.so
139 #undef putchar
142 #ifdef putchar
143 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
144 #undef putchar
145 inline _LIBCPP_INLINE_VISIBILITY int putchar(int __c) {return __libcpp_putchar(__c);
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
help.h 16 putchar(c);
  /external/llvm/test/CodeGen/X86/
tailcallfp2.ll 3 declare i32 @putchar(i32)
13 call i32 @putchar(i32 90)
  /external/llvm/test/Transforms/InstCombine/
puts-1.ll 11 ; Check puts("") -> putchar('\n').
17 ; CHECK-NEXT: call i32 @putchar(i32 10)
printf-1.ll 30 ; Check printf("x") -> putchar('x'), even for '%'.
36 ; CHECK-NEXT: call i32 @putchar(i32 104)
45 ; CHECK-NEXT: call i32 @putchar(i32 37)
61 ; Check printf("%c", chr) -> putchar(chr).
67 ; CHECK-NEXT: call i32 @putchar(i32 104)
  /external/tcpdump/
print-tftp.c 103 putchar(' ');
106 putchar('"');
109 putchar('"');
117 putchar(' ');
139 putchar('"');
print-krb.c 117 putchar('M');
118 putchar('-');
122 putchar('^');
124 putchar(c);
139 putchar('.');
141 putchar('@');
185 putchar('.');
print-bootp.c 139 putchar('"');
143 putchar('"');
149 putchar('"');
153 putchar('"');
458 putchar('+');
480 putchar('"');
482 putchar('"');
485 putchar('"');
496 putchar(',');
515 putchar(',');
    [all...]
print-cnfp.c 169 if (flags & TH_FIN) putchar('F');
170 if (flags & TH_SYN) putchar('S');
171 if (flags & TH_RST) putchar('R');
172 if (flags & TH_PUSH) putchar('P');
173 if (flags & TH_ACK) putchar('A');
174 if (flags & TH_URG) putchar('U');
176 putchar(' ');
  /system/core/toolbox/upstream-netbsd/bin/cat/
cat.c 183 else if (!gobble && putchar(ch) == EOF)
210 if (putchar('$') == EOF)
214 if (putchar('^') == EOF || putchar('I') == EOF)
220 if (putchar('M') == EOF || putchar('-') == EOF)
225 if (putchar('^') == EOF ||
226 putchar(ch == '\177' ? '?' :
232 if (putchar(ch) == EOF)
  /external/iproute2/netem/
pareto.c 35 putchar('\n');
  /external/ppp/pppd/
cbcp.c 388 PUTCHAR(CB_CONF_USER, bufp);
390 PUTCHAR(len , bufp);
391 PUTCHAR(5, bufp); /* delay */
392 PUTCHAR(1, bufp);
400 PUTCHAR(CB_CONF_ADMIN, bufp);
402 PUTCHAR(len, bufp);
403 PUTCHAR(5, bufp); /* delay */
410 PUTCHAR(CB_CONF_NO, bufp);
412 PUTCHAR(len , bufp);
435 PUTCHAR(code, outp)
    [all...]
  /frameworks/wilhelm/tests/sandbox/
intbufq.c 73 putchar('.');
224 putchar('\r');
230 putchar('\r');
231 putchar('\n');
259 putchar('\r');
260 putchar('\n');
268 putchar('?');

Completed in 3302 milliseconds

1 2 3 4 5 6 7 8 91011>>