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

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DConsole.c325 UINTN MaxLength; local
336 MaxLength = 0;
339 MaxLength = MAX (MaxLength, StrLen (String));
352 ASSERT (MaxLength != 0);
381 // Limit MaxLength to width of the screen minus 2 columns for the box itself
383 MaxLength = MIN (MaxLength, Columns - 2);
389 Column = (Columns - (MaxLength + 2)) / 2;
394 Line = AllocateZeroPool ((MaxLength
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DConsole.c325 UINTN MaxLength; local
336 MaxLength = 0;
339 MaxLength = MAX (MaxLength, StrLen (String));
352 ASSERT (MaxLength != 0);
381 // Limit MaxLength to width of the screen minus 2 columns for the box itself
383 MaxLength = MIN (MaxLength, Columns - 2);
389 Column = (Columns - (MaxLength + 2)) / 2;
394 Line = AllocateZeroPool ((MaxLength
[all...]

Completed in 161 milliseconds