Home | History | Annotate | Download | only in src

Lines Matching defs:radix

72   { "radix", OPT_RADIX, "RADIX", 0, N_("Use RADIX for printing symbol values"),
74 { NULL, 'd', NULL, 0, N_("Same as `--radix=10'"), 0 },
75 { NULL, 'o', NULL, 0, N_("Same as `--radix=8'"), 0 },
76 { NULL, 'x', NULL, 0, N_("Same as `--radix=16'"), 0 },
132 /* Radix for printed numbers. */
138 } radix;
141 /* Mapping of radix and binary class to length. */
236 radix = radix_decimal;
244 radix = radix_octal;
248 radix = radix_hex;
274 radix = radix_hex;
276 radix = radix_decimal;
278 radix = radix_octal;
280 error (EXIT_FAILURE, 0, gettext ("Invalid radix: %s"), arg);
412 const int digits = length_map[gelf_getclass (elf) - 1][radix];
446 if (radix == radix_hex)
448 else if (radix == radix_decimal)
472 if (radix == radix_hex)
475 else if (radix == radix_decimal)
495 if (radix == radix_hex)
497 else if (radix == radix_decimal)
525 if (radix == radix_hex)
527 else if (radix == radix_decimal)
639 printf (radix == radix_hex ? "%" PRIx64 "(%c%c%c)"
640 : (radix == radix_decimal ? "%" PRId64 "(%c%c%c)"
650 if (radix == radix_hex)
652 else if (radix == radix_decimal)