Home
last modified time | relevance | path

Searched refs:putchar (Results 1 – 20 of 20) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0008-Remove-gcc-warning-about-redefinition-of-putchar-wit.patch4 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
40 #ifdef putchar
41 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
[all …]
D0007-Fix-libc-compiler-error-when-calling-std-feof.patch7 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
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdio79 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);}
146 #endif // putchar
[all …]
/ndk/sources/host-tools/sed-4.2.1/lib/
Dunlocked-io.h121 # undef putchar
122 # define putchar(x) putchar_unlocked (x) macro
124 # define putchar_unlocked(x) putchar (x)
Dstdio-write.c113 putchar (int c) in putchar() function
Dstdio.in.h458 # undef putchar
459 # define putchar rpl_putchar
460 extern int putchar (int c);
/ndk/tests/build/issue66668-libc++-std-feof/jni/
Dissue66668-libc++-std-feof.cpp7 int b = std::putchar(a); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h61 # undef putchar
94 using _STLP_VENDOR_CSTD::putchar;
D_rope.c954 for (int __i = 0; __i < __indent; ++__i) putchar(' '); in _S_dump()
/ndk/sources/host-tools/make-3.81/
Drule.c527 putchar (' '); in print_rule()
529 putchar (':'); in print_rule()
532 putchar (':'); in print_rule()
536 putchar ('\n'); in print_rule()
555 putchar ('\n'); in print_rule_data_base()
Dfile.c394 putchar (' '); in remove_intermediates()
407 putchar ('\n'); in remove_intermediates()
879 putchar ('\n'); in print_file()
900 putchar ('\n'); in print_file()
922 putchar ('\n'); in print_file()
Dmisc.c157 putchar (' '); in print_spaces()
217 putchar ('\n');
Dvariable.c1398 putchar ('\n'); in print_variable()
1422 putchar ('$'); in print_variable()
1423 putchar (*p); in print_variable()
1425 putchar ('\n'); in print_variable()
Dgetloadavg.c1021 putchar ('\n'); in main()
Dmain.c2027 putchar ('\n'); in main()
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dtst-regex2.c81 putchar ('\n'); in main()
200 putchar ('\n'); in main()
/ndk/sources/cxx-stl/system/include/
Dcstdio70 using ::putchar;
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio70 using ::putchar;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdio_h.pass.cpp122 static_assert((std::is_same<decltype(putchar(0)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
Dcstdio.pass.cpp125 static_assert((std::is_same<decltype(std::putchar(0)), int>::value), ""); in main()