Searched refs:putchar (Results 1 – 20 of 20) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 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 40 #ifdef putchar 41 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);} [all …]
|
D | 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
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | 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);} 146 #endif // putchar [all …]
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | unlocked-io.h | 121 # undef putchar 122 # define putchar(x) putchar_unlocked (x) macro 124 # define putchar_unlocked(x) putchar (x)
|
D | stdio-write.c | 113 putchar (int c) in putchar() function
|
D | stdio.in.h | 458 # undef putchar 459 # define putchar rpl_putchar 460 extern int putchar (int c);
|
/ndk/tests/build/issue66668-libc++-std-feof/jni/ |
D | issue66668-libc++-std-feof.cpp | 7 int b = std::putchar(a); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cstdio.h | 61 # undef putchar 94 using _STLP_VENDOR_CSTD::putchar;
|
D | _rope.c | 954 for (int __i = 0; __i < __indent; ++__i) putchar(' '); in _S_dump()
|
/ndk/sources/host-tools/make-3.81/ |
D | rule.c | 527 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()
|
D | file.c | 394 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()
|
D | misc.c | 157 putchar (' '); in print_spaces() 217 putchar ('\n');
|
D | variable.c | 1398 putchar ('\n'); in print_variable() 1422 putchar ('$'); in print_variable() 1423 putchar (*p); in print_variable() 1425 putchar ('\n'); in print_variable()
|
D | getloadavg.c | 1021 putchar ('\n'); in main()
|
D | main.c | 2027 putchar ('\n'); in main()
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | tst-regex2.c | 81 putchar ('\n'); in main() 200 putchar ('\n'); in main()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cstdio | 70 using ::putchar;
|
/ndk/sources/cxx-stl/system/include/ |
D | cstdio | 70 using ::putchar;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 122 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/ |
D | cstdio.pass.cpp | 125 static_assert((std::is_same<decltype(std::putchar(0)), int>::value), ""); in main()
|