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

/systemd/src/boot/efi/
H A Dboot.c78 static VOID cursor_right(UINTN *cursor, UINTN *first, UINTN x_max, UINTN len) { argument
79 if ((*cursor)+1 < x_max)
85 static BOOLEAN line_edit(CHAR16 *line_in, CHAR16 **line_out, UINTN x_max, UINTN y_pos) { argument
102 print = AllocatePool((x_max+1) * sizeof(CHAR16));
117 if (i >= x_max-1)
118 i = x_max-1;
120 while (clear > 0 && i < x_max-1) {
156 if (cursor+1 >= x_max) {
157 cursor = x_max-1;
158 first = len - (x_max
479 UINTN x_max; local
[all...]

Completed in 101 milliseconds