Lines Matching refs:CHAR
58 static int exponent(CHAR *, int, CHAR);
62 static CHAR *__ujtoa(uintmax_t, CHAR *, int, int, const char *);
63 static CHAR *__ultoa(u_long, CHAR *, int, int, const char *);
87 io_print(struct io_state *iop, const CHAR * __restrict ptr, int len, locale_t locale) in io_print()
105 static const CHAR blanks[PADSIZE] =
107 static const CHAR zeroes[PADSIZE] =
115 io_pad(struct io_state *iop, int howmany, const CHAR * __restrict with, in io_pad()
134 io_printandpad(struct io_state *iop, const CHAR *p, const CHAR *ep, in io_printandpad()
135 int len, const CHAR * __restrict with, locale_t locale) in io_printandpad()
164 static CHAR *
165 __ultoa(u_long val, CHAR *endp, int base, int octzero, const char *xdigs) in __ultoa()
167 CHAR *cp = endp; in __ultoa()
227 static CHAR *
228 __ujtoa(uintmax_t val, CHAR *endp, int base, int octzero, const char *xdigs) in __ujtoa()
230 CHAR *cp = endp; in __ujtoa()
286 exponent(CHAR *p0, int exp, CHAR fmtch) in exponent()
288 CHAR *p, *t; in exponent()
289 CHAR expbuf[MAXEXPDIG]; in exponent()