HomeSort by relevance Sort by last modified time
    Searched full:putchar (Results 1 - 25 of 739) 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 16 putchar(val >> 24);
17 putchar(val >> 16);
18 putchar(val >> 8);
19 putchar(val >> 0);
  /ndk/tests/build/issue66668-libc++-std-feof/jni/
issue66668-libc++-std-feof.cpp 7 int b = std::putchar(a);
  /external/toybox/toys/posix/
paste.c 57 putchar(toybuf[i++ % ndelim]);
61 putchar(c);
65 putchar('\n');
85 if (!anyopen++) for (j = 0; j < i; j++) putchar(toybuf[j % ndelim]);
86 if (c != '\n') putchar(c);
95 if (anyopen) putchar((i + 1 == toys.optc) ? toybuf[i % ndelim] : '\n');
comm.c 33 if (!(toys.optflags & FLAG_1)) putchar('\t');
36 if (!(toys.optflags & FLAG_1)) putchar('\t');
37 if (!(toys.optflags & FLAG_2)) putchar('\t');
echo.c 44 if (i++) putchar(' ');
82 putchar(out);
87 if (!(toys.optflags&FLAG_n)) putchar('\n');
  /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
  /external/toybox/toys/other/
base64.c 38 putchar(toybuf[out<<(6-bits)]);
41 while (x++&3) putchar('=');
55 putchar(out >> (bits -= 8));
69 putchar(toybuf[out >> (bits -= 6)]);
  /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/current/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/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/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...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
BaseByteBuffer.java 64 public final ByteBuffer putChar (char value) {
68 public final ByteBuffer putChar (int index, char value) {
  /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('?');
  /external/bison/lib/
unlocked-io.h 121 # undef putchar macro
122 # define putchar(x) putchar_unlocked (x) macro
124 # define putchar_unlocked(x) putchar (x)
  /external/icu/icu4c/source/common/
cmemory.c 70 putchar('>');
90 putchar('~');
114 putchar('<');

Completed in 1099 milliseconds

1 2 3 4 5 6 7 8 91011>>