Searched defs:format_width (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/PC/BIOS/
H A Dprint.c145 // Supports %[format_width][length]format
154 uint16_t arg, nibble, hibyte, format_width, hexadd; local
160 format_width = 0;
169 format_width = 0;
173 format_width = (format_width * 10) + (c - '0');
178 if (format_width == 0)
179 format_width = 4;
184 for (i=format_width-1; i>=0; i--) {
190 put_uint(action, arg, format_width,
[all...]
/vbox/src/VBox/Devices/Graphics/BIOS/
H A Dvgabios.c2053 unsigned format_width, i; local
2060 format_width = 0;
2065 format_width = 0;
2068 format_width = (format_width * 10) + (c - '0');
2072 if (format_width == 0)
2073 format_width = 4;
2075 digit = format_width - 1;
2076 for (i = 0; i < format_width; i++) {

Completed in 37 milliseconds