Symbol: CHAR_T
lib/libc/stdio/vfwprintf.c
1280
if ((result = GETARG(CHAR_T *)) == NULL)
lib/libc/stdio/vfwprintf.c
1305
const CHAR_T *p =
lib/libc/stdio/vfwprintf.c
138
static int __sbprintf(FILE *, locale_t, const CHAR_T *, va_list);
lib/libc/stdio/vfwprintf.c
140
static CHAR_T *__ujtoa(uintmax_t, CHAR_T *, int, int, const char *, int,
lib/libc/stdio/vfwprintf.c
142
static CHAR_T *__ultoa(u_long, CHAR_T *, int, int, const char *, int,
lib/libc/stdio/vfwprintf.c
145
static CHAR_T *__mbsconv(char *, int, locale_t);
lib/libc/stdio/vfwprintf.c
146
static wint_t __xfputwc(CHAR_T, FILE *, locale_t);
lib/libc/stdio/vfwprintf.c
151
static int __find_arguments(const CHAR_T *, va_list, union arg **);
lib/libc/stdio/vfwprintf.c
1537
__find_arguments(const CHAR_T *fmt0, va_list ap, union arg **argtable)
lib/libc/stdio/vfwprintf.c
1539
CHAR_T *fmt; /* format string */
lib/libc/stdio/vfwprintf.c
1542
CHAR_T *cp; /* handy char pointer (short term usage) */
lib/libc/stdio/vfwprintf.c
160
__sbprintf(FILE *fp, locale_t loc, const CHAR_T *fmt, va_list ap)
lib/libc/stdio/vfwprintf.c
1622
fmt = (CHAR_T *)__UNCONST(fmt0);
lib/libc/stdio/vfwprintf.c
1948
exponent(CHAR_T *p0, int expo, int fmtch)
lib/libc/stdio/vfwprintf.c
1950
CHAR_T *p, *t;
lib/libc/stdio/vfwprintf.c
1951
CHAR_T expbuf[MAXEXPDIG];
lib/libc/stdio/vfwprintf.c
253
#define to_char(n) (CHAR_T)((n) + '0')
lib/libc/stdio/vfwprintf.c
261
static CHAR_T *
lib/libc/stdio/vfwprintf.c
262
__ultoa(u_long val, CHAR_T *endp, int base, int octzero, const char *xdigs,
lib/libc/stdio/vfwprintf.c
265
CHAR_T *cp = endp;
lib/libc/stdio/vfwprintf.c
339
static CHAR_T *
lib/libc/stdio/vfwprintf.c
340
__ujtoa(uintmax_t val, CHAR_T *endp, int base, int octzero,
lib/libc/stdio/vfwprintf.c
343
CHAR_T *cp = endp;
lib/libc/stdio/vfwprintf.c
553
WDECL(vf,printf)(FILE * __restrict fp, const CHAR_T * __restrict fmt0, va_list ap)
lib/libc/stdio/vfwprintf.c
564
WDECL(vf,printf_l)(FILE * __restrict fp, locale_t loc, const CHAR_T * __restrict fmt0,
lib/libc/stdio/vfwprintf.c
583
static int exponent(CHAR_T *, int, int);
lib/libc/stdio/vfwprintf.c
620
WDECL(__vf,printf_unlocked_l)(FILE *fp, locale_t loc, const CHAR_T *fmt0, va_list ap)
lib/libc/stdio/vfwprintf.c
622
CHAR_T *fmt; /* format string */
lib/libc/stdio/vfwprintf.c
625
CHAR_T *cp; /* handy char pointer (short term usage) */
lib/libc/stdio/vfwprintf.c
630
CHAR_T sign; /* sign prefix (' ', '+', '-', or \0) */
lib/libc/stdio/vfwprintf.c
663
CHAR_T expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */
lib/libc/stdio/vfwprintf.c
683
CHAR_T buf[BUF]; /* buffer with space for digits of uintmax_t */
lib/libc/stdio/vfwprintf.c
684
CHAR_T ox[2]; /* space for 0x hex-prefix */
lib/libc/stdio/vfwprintf.c
689
CHAR_T *convbuf; /* multibyte to wide conversion result */
lib/libc/stdio/vfwprintf.c
697
static CHAR_T blanks[PADSIZE] =
lib/libc/stdio/vfwprintf.c
699
static CHAR_T zeroes[PADSIZE] =
lib/libc/stdio/vfwprintf.c
843
fmt = (CHAR_T *)__UNCONST(fmt0);
lib/libc/stdio/vfwprintf.c
858
const CHAR_T *result;