Lines Matching defs:alt_form
61 static char *o2s(uintmax_t x, bool alt_form, char *s, size_t *slen_p);
63 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
317 o2s(uintmax_t x, bool alt_form, char *s, size_t *slen_p) {
319 if (alt_form && *s != '0') {
328 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p) {
330 if (alt_form) {
431 bool alt_form = false;
448 assert(!alt_form);
449 alt_form = true;
572 s = o2s(val, alt_form, buf, &slen);
590 s = x2s(val, alt_form, *f == 'X', buf, &slen);