Searched refs:MaxLength (Results 1 - 10 of 10) 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...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DEdkIIWorkspace.py260 MaxLength = 0
262 if len(Key) > MaxLength:
263 MaxLength = len(Key)
271 Line = '%-*s %c %s\n' % (MaxLength, Key[0], KeySplitCharacter, ' '.join(Dictionary[Key[0]]))
273 Line = '%-*s %c %s\n' % (MaxLength, Key[0], KeySplitCharacter, Dictionary[Key[0]])
281 Line = '%-*s %c %s\n' % (MaxLength, RemainingKey, KeySplitCharacter,' '.join(Dictionary[RemainingKey]))
283 Line = '%-*s %c %s\n' % (MaxLength, RemainingKey, KeySplitCharacter, Dictionary[RemainingKey])
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DParseInf.h44 IN UINTN MaxLength
56 until the number of characters read is equal to MaxLength - 1, whichever
63 MaxLength The maximum size of the input buffer.
H A DParseInf.c33 IN UINTN MaxLength
43 until the number of characters read is equal to MaxLength - 1, whichever
50 MaxLength The maximum size of the input buffer.
105 if (CharsToCopy > MaxLength - 1) {
106 CharsToCopy = MaxLength - 1;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciEnumerator.h57 @param MaxLength Maximum rom size.
64 IN UINT64 MaxLength
H A DPciEnumerator.c313 @param MaxLength Maximum rom size.
320 IN UINT64 MaxLength
337 ProcessOptionRom (Temp, RomBase, MaxLength);
340 if (Temp->RomSize != 0 && Temp->RomSize <= MaxLength) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DStrGather.py249 MaxLength = Width
255 if Index < MaxLength:
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A DBuildReport.py72 ## Tags for MaxLength of line in report
182 # less than MaxLength.
185 # @param MaxLength The Max Length of the line
187 def FileLinesSplit(Content=None, MaxLength=None):
192 while len(Line.rstrip()) > MaxLength:
193 LineSpaceIndex = Line.rfind(TAB_SPACE_SPLIT, 0, MaxLength)
194 LineSlashIndex = Line.rfind(TAB_SLASH, 0, MaxLength)
195 LineBackSlashIndex = Line.rfind(TAB_BACK_SLASH, 0, MaxLength)
199 LineBreakIndex = MaxLength
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DFdfParser.py4239 MaxLength = len (self.Profile.FvDict)
4247 while RefFvStack != [] and Index < MaxLength:
4288 MaxLength = len (self.Profile.CapsuleDict)
4300 while RefCapStack != [] and Index < MaxLength:

Completed in 79 milliseconds