Home
last modified time | relevance | path

Searched refs:bc_flush_none (Results 1 – 8 of 8) sorted by relevance

/external/bc/src/
Dfile.c172 bc_file_write(f, bc_flush_none, ptr, len); in bc_file_vprintf()
181 bc_file_putchar(f, bc_flush_none, uc); in bc_file_vprintf()
187 bc_file_puts(f, bc_flush_none, s); 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()
202 bc_file_puts(f, bc_flush_none, buf); in bc_file_vprintf()
215 if (!ull) bc_file_putchar(f, bc_flush_none, '0'); in bc_file_vprintf()
218 bc_file_puts(f, bc_flush_none, buf); in bc_file_vprintf()
225 if (ptr[0]) bc_file_puts(f, bc_flush_none, ptr); in bc_file_vprintf()
249 bc_file_flush(f, bc_flush_none); in bc_file_free()
Dvm.c80 bc_file_puts(&vm.ferr, bc_flush_none, "Longjmp: ");
81 bc_file_puts(&vm.ferr, bc_flush_none, f);
82 bc_file_putchar(&vm.ferr, bc_flush_none, '\n');
83 bc_file_flush(&vm.ferr, bc_flush_none);
151 bc_file_puts(&vm.fout, bc_flush_none, vm.name);
152 bc_file_putchar(&vm.fout, bc_flush_none, ' ');
153 bc_file_puts(&vm.fout, bc_flush_none, BC_VERSION);
154 bc_file_putchar(&vm.fout, bc_flush_none, '\n');
155 bc_file_puts(&vm.fout, bc_flush_none, bc_copyright);
158 bc_file_putchar(&vm.fout, bc_flush_none, '\n');
[all …]
Dhistory.c508 bc_file_write(&vm.fout, bc_flush_none, "\x1b[6n", 4); in bc_history_cursorPos()
509 bc_file_flush(&vm.fout, bc_flush_none); in bc_history_cursorPos()
559 bc_file_write(&vm.fout, bc_flush_none, "\x1b[999C", 6); in bc_history_columns()
560 bc_file_flush(&vm.fout, bc_flush_none); in bc_history_columns()
567 bc_file_flush(&vm.fout, bc_flush_none); in bc_history_columns()
635 bc_file_flush(&vm.fout, bc_flush_none); in bc_history_refresh()
650 bc_file_write(&vm.fout, bc_flush_none, "\r", 1); in bc_history_refresh()
656 bc_file_write(&vm.fout, bc_flush_none, h->extras.v, h->extras.len - 1); in bc_history_refresh()
662 bc_file_write(&vm.fout, bc_flush_none, h->prompt, h->plen); in bc_history_refresh()
665 bc_file_write(&vm.fout, bc_flush_none, buf, BC_HIST_BUF_LEN(h)); in bc_history_refresh()
[all …]
Dread.c120 bc_file_puts(&vm.fout, bc_flush_none, prompt); in bc_read_chars()
121 bc_file_flush(&vm.fout, bc_flush_none); in bc_read_chars()
153 bc_file_puts(&vm.fout, bc_flush_none, prompt); in bc_read_chars()
155 bc_file_flush(&vm.fout, bc_flush_none); in bc_read_chars()
Ddata.c176 const BcFlushType bc_flush_none = BC_FLUSH_NO_EXTRAS_NO_CLEAR; variable
Dnum.c1658 bc_vm_putchar('\\', bc_flush_none); in bc_num_printNewline()
2911 bc_file_puts(&vm.fout, bc_flush_none, name); in bc_num_printDebug()
2912 bc_file_puts(&vm.fout, bc_flush_none, ": "); in bc_num_printDebug()
2932 bc_file_puts(&vm.fout, bc_flush_none, name); in bc_num_printWithDigs()
2948 bc_file_puts(&vm.ferr, bc_flush_none, ". "); in bc_num_dump()
Dprogram.c1815 bc_file_write(&vm.fout, bc_flush_none, bc_program_ready_msg, in bc_program_reset()
/external/bc/include/
Dfile.h84 extern const BcFlushType bc_flush_none;