Lines Matching refs:format_width
1618 // Supports %[format_width][length]format
1631 Bit16u arg_seg, arg, nibble, hibyte, shift_count, format_width, hexadd;
1637 format_width = 0;
1649 format_width = 0;
1653 format_width = (format_width * 10) + (c - '0');
1659 if (format_width == 0)
1660 format_width = 4;
1665 for (i=format_width-1; i>=0; i--) {
1671 put_uint(action, arg, format_width, 0);
1680 put_luint(action, 0L-(((Bit32u) hibyte << 16) | arg), format_width-1, 1);
1682 put_luint(action, ((Bit32u) hibyte << 16) | arg, format_width, 0);
1685 put_luint(action, ((Bit32u) hibyte << 16) | arg, format_width, 0);
1689 if (format_width == 0)
1690 format_width = 8;
1695 for (i=format_width-1; i>=0; i--) {
1703 put_int(action, -arg, format_width - 1, 1);
1705 put_int(action, arg, format_width, 0);