Lines Matching refs:CHAR
57 static int exponent(CHAR *, int, CHAR);
60 static CHAR *__ujtoa(uintmax_t, CHAR *, int, int, const char *);
61 static CHAR *__ultoa(u_long, CHAR *, int, int, const char *);
85 io_print(struct io_state *iop, const CHAR * __restrict ptr, int len, locale_t locale) in io_print()
103 static const CHAR blanks[PADSIZE] =
105 static const CHAR zeroes[PADSIZE] =
113 io_pad(struct io_state *iop, int howmany, const CHAR * __restrict with, in io_pad()
132 io_printandpad(struct io_state *iop, const CHAR *p, const CHAR *ep, in io_printandpad()
133 int len, const CHAR * __restrict with, locale_t locale) in io_printandpad()
162 static CHAR *
163 __ultoa(u_long val, CHAR *endp, int base, int octzero, const char *xdigs) in __ultoa()
165 CHAR *cp = endp; in __ultoa()
225 static CHAR *
226 __ujtoa(uintmax_t val, CHAR *endp, int base, int octzero, const char *xdigs) in __ujtoa()
228 CHAR *cp = endp; in __ujtoa()
283 exponent(CHAR *p0, int exp, CHAR fmtch) in exponent()
285 CHAR *p, *t; in exponent()
286 CHAR expbuf[MAXEXPDIG]; in exponent()