Searched refs:__ultoa (Results 1 - 4 of 4) sorted by relevance

/barrelfish-master/lib/libc/stdio/
H A Dprintfcommon.h63 static CHAR *__ultoa(u_long, CHAR *, int, int, const char *);
165 __ultoa(u_long val, CHAR *endp, int base, int octzero, const char *xdigs) function
219 /* Identical to __ultoa, but for intmax_t. */
226 /* quick test for small values; __ultoa is typically much faster */
227 /* (perhaps instead we should run until small, then call __ultoa?) */
229 return (__ultoa((u_long)val, endp, base, octzero, xdigs));
H A Dxprintf_int.c89 __ultoa(u_long val, char *endp, int base, const char *xdigs, function
163 /* Identical to __ultoa, but for intmax_t. */
350 p = __ultoa(uu, pe, rdx, digit, ngrp, thousands_sep, grouping);
H A Dvfprintf.c903 cp = __ultoa(ulval, cp, base,
H A Dvfwprintf.c971 cp = __ultoa(ulval, cp, base,

Completed in 27 milliseconds