Lines Matching refs:append_char
75 void (*append_char)(struct state *, unsigned char); member
166 (*state->append_char)(state, rep[n % base]); in append_number()
173 (*state->append_char)(state, '0'); in append_number()
185 (*state->append_char)(state, '0'); in append_number()
192 (*state->append_char)(state, rep[10] + 23); /* XXX */ in append_number()
193 (*state->append_char)(state, '0'); in append_number()
197 (*state->append_char)(state, '-'); in append_number()
200 (*state->append_char)(state, '+'); in append_number()
203 (*state->append_char)(state, ' '); in append_number()
215 (*state->append_char)(state, ' '); in append_number()
250 (*state->append_char) (state, ' '); in append_string()
255 (*state->append_char) (state, *arg++); in append_string()
260 (*state->append_char) (state, *arg++); in append_string()
266 (*state->append_char) (state, ' '); in append_string()
273 append_char(struct state *state, in append_char() function
281 (*state->append_char) (state, ' ') ; in append_char()
284 (*state->append_char) (state, arg); in append_char()
287 (*state->append_char) (state, ' '); in append_char()
405 append_char(state, va_arg(ap, int), width, flags); in xyzprintf()
485 (*state->append_char)(state, c); in xyzprintf()
489 (*state->append_char)(state, '%'); in xyzprintf()
490 (*state->append_char)(state, c); in xyzprintf()
495 (*state->append_char) (state, c); in xyzprintf()
620 state.append_char = as_append_char; in vasnprintf()
656 state.append_char = sn_append_char; in vsnprintf()