Lines Matching refs:out_char
60 bc_out_long (val, size, space, out_char) in bc_out_long() argument
64 void (*out_char)(int);
66 void (*out_char)();
72 if (space) (*out_char) (' ');
77 (*out_char) ('0');
81 (*out_char) (digits[ix]);
89 bc_out_num (bc_num num, int o_base, void (*out_char)(int), int leading_zero) in bc_out_num()
91 bc_out_num (bc_num num, int o_base, void (*out_char)(), int leading_zero) in bc_out_num()
100 if (num->n_sign == MINUS) (*out_char) ('-'); in bc_out_num()
104 (*out_char) ('0'); in bc_out_num()
112 (*out_char) (BCD_CHAR(*nptr++)); in bc_out_num()
117 (*out_char) ('0'); in bc_out_num()
122 (*out_char) ('.'); in bc_out_num()
124 (*out_char) (BCD_CHAR(*nptr++)); in bc_out_num()
131 (*out_char) ('0'); in bc_out_num()
170 (*out_char) (ref_str[ (int) temp->digit]); in bc_out_num()
172 bc_out_long (temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num()
180 (*out_char) ('.'); in bc_out_num()
189 (*out_char) (ref_str[fdigit]); in bc_out_num()
191 bc_out_long (fdigit, max_o_digit->n_len, pre_space, out_char); in bc_out_num()