Home
last modified time | relevance | path

Searched refs:UCHAR_T (Results 1 – 5 of 5) sorted by relevance

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf-parse.h38 const UCHAR_T *end_of_fmt, *next_fmt;
76 read_int (const UCHAR_T * *pstr) in read_int()
93 static inline const UCHAR_T *
95 find_spec (const UCHAR_T *format) in find_spec()
97 find_spec (const UCHAR_T *format, mbstate_t *ps) in find_spec()
101 return (const UCHAR_T *) __wcschrnul ((const CHAR_T *) format, L'%'); in find_spec()
131 parse_one_spec (const UCHAR_T *format, size_t posn, struct printf_spec *spec, in parse_one_spec()
134 parse_one_spec (const UCHAR_T *format, size_t posn, struct printf_spec *spec, in parse_one_spec()
153 spec->info.wide = sizeof (UCHAR_T) > 1; in parse_one_spec()
158 const UCHAR_T *begin = format; in parse_one_spec()
[all …]
H A Dprintf-parse.c32 # define UCHAR_T unsigned char macro
48 # define UCHAR_T uwchar_t macro
H A Dprintf-prs.c28 # define UCHAR_T unsigned char macro
51 # define UCHAR_T uwchar_t macro
H A Dvfscanf.c101 # define UCHAR_T unsigned int macro
125 # define UCHAR_T unsigned char macro
189 # define UCHAR_T unsigned char macro
268 register UCHAR_T fc; /* Current character of the format. */
484 if (ISDIGIT ((UCHAR_T) *f))
486 argpos = (UCHAR_T) *f++ - L_('0');
487 while (ISDIGIT ((UCHAR_T) *f))
488 argpos = argpos * 10 + ((UCHAR_T) *f++ - L_('0'));
518 if (ISDIGIT ((UCHAR_T) *f))
523 while (ISDIGIT ((UCHAR_T) *f))
[all …]
H A Dvfprintf.c71 # define UCHAR_T unsigned char macro
87 # define UCHAR_T unsigned int /* uwchar_t */ macro
132 # define UCHAR_T unsigned char macro
246 const UCHAR_T *f; in vfprintf()
249 const UCHAR_T *lead_str_end; in vfprintf()
252 const UCHAR_T *end_of_spec; in vfprintf()
1299 f = lead_str_end = find_spec ((const UCHAR_T *) format); in vfprintf()
1318 outstring ((const UCHAR_T *) format, in vfprintf()
1319 lead_str_end - (const UCHAR_T *) format); in vfprintf()
1361 UCHAR_T pad = L_(' ');/* Padding character. */ in vfprintf()
[all …]