Searched refs:bc_file_putchar (Results 1 – 4 of 4) sorted by relevance
/external/bc/include/ |
D | file.h | 64 #define bc_file_putchar(f, t, c) bc_file_putchar(f, c) macro 74 void bc_file_putchar(BcFile *restrict f, BcFlushType type, uchar c);
|
/external/bc/src/ |
D | file.c | 181 bc_file_putchar(f, bc_flush_none, uc); in bc_file_vprintf() 195 bc_file_putchar(f, bc_flush_none, '-'); in bc_file_vprintf() 199 if (!d) bc_file_putchar(f, bc_flush_none, '0'); in bc_file_vprintf() 215 if (!ull) bc_file_putchar(f, bc_flush_none, '0'); in bc_file_vprintf() 232 void bc_file_putchar(BcFile *restrict f, BcFlushType type, uchar c) { in bc_file_putchar() function
|
D | vm.c | 82 bc_file_putchar(&vm.ferr, bc_flush_none, '\n'); 152 bc_file_putchar(&vm.fout, bc_flush_none, ' '); 154 bc_file_putchar(&vm.fout, bc_flush_none, '\n'); 158 bc_file_putchar(&vm.fout, bc_flush_none, '\n'); 229 bc_file_putchar(&vm.ferr, bc_flush_none, '\n'); 231 bc_file_putchar(&vm.ferr, bc_flush_none, ' '); 251 bc_file_putchar(&vm.ferr, bc_flush_none, ' '); 495 bc_file_putchar(&vm.fout, type, (uchar) c);
|
D | num.c | 2914 bc_file_putchar(&vm.fout, bc_flush_err, '\n'); in bc_num_printDebug() 2915 if (emptyline) bc_file_putchar(&vm.fout, bc_flush_err, '\n'); in bc_num_printDebug() 2926 bc_file_putchar(&vm.fout, bc_flush_err, '\n'); in bc_num_printDigs() 2927 if (emptyline) bc_file_putchar(&vm.fout, bc_flush_err, '\n'); in bc_num_printDigs()
|