Lines Matching refs:out_char
1392 bc_out_long (long val, int size, int space, void (*out_char)(int)) in bc_out_long()
1397 if (space) (*out_char) (' '); in bc_out_long()
1402 (*out_char) ('0'); in bc_out_long()
1406 (*out_char) (digits[ix]); in bc_out_long()
1413 bc_out_num (bc_num num, int o_base, void (*out_char)(int), int leading_zero) in bc_out_num()
1421 if (num->n_sign == MINUS) (*out_char) ('-'); in bc_out_num()
1425 (*out_char) ('0'); in bc_out_num()
1433 (*out_char) (BCD_CHAR(*nptr++)); in bc_out_num()
1438 (*out_char) ('0'); in bc_out_num()
1443 (*out_char) ('.'); in bc_out_num()
1445 (*out_char) (BCD_CHAR(*nptr++)); in bc_out_num()
1452 (*out_char) ('0'); in bc_out_num()
1491 (*out_char) (ref_str[ (int) temp->digit]); in bc_out_num()
1493 bc_out_long (temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num()
1501 (*out_char) ('.'); in bc_out_num()
1510 (*out_char) (ref_str[fdigit]); in bc_out_num()
1512 bc_out_long (fdigit, max_o_digit->n_len, pre_space, out_char); in bc_out_num()
1713 out_char (int c) in out_char() function
1722 bc_out_num (num, 10, out_char, 0); in pn()
1723 out_char ('\n'); in pn()