Home
last modified time | relevance | path

Searched refs:y_max (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/boot/efi/
Dconsole.c216 UINTN x_max, y_max; in get_auto_mode() local
219 console_query_mode(&x_max, &y_max); in get_auto_mode()
220 … text_area = SYSTEM_FONT_WIDTH * SYSTEM_FONT_HEIGHT * (UINT64)x_max * (UINT64)y_max; in get_auto_mode()
282 EFI_STATUS console_query_mode(UINTN *x_max, UINTN *y_max) { in console_query_mode() argument
286 assert(y_max); in console_query_mode()
288 err = ST->ConOut->QueryMode(ST->ConOut, ST->ConOut->Mode->Mode, x_max, y_max); in console_query_mode()
294 *y_max = 50; in console_query_mode()
299 *y_max = 25; in console_query_mode()
Dconsole.h36 EFI_STATUS console_query_mode(UINTN *x_max, UINTN *y_max);
Dboot.c468 UINTN x_max, y_max; in print_status() local
477 console_query_mode(&x_max, &y_max); in print_status()
496 …", ST->ConOut->Mode->Mode, ST->ConOut->Mode->MaxMode - INT64_C(1), x_max, y_max, screen_width, scr… in print_status()
616 UINTN x_max, y_max; in menu_run() local
644 console_query_mode(&x_max, &y_max); in menu_run()
647 visible_max = y_max - 2; in menu_run()
675 … y_status = MIN(y_start + MIN(visible_max, config->entry_count) + 1, y_max - 1); in menu_run()