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

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
H A DStrings.c410 @param LineWidth The maximum width of the line in units of narrow glyphs.
428 IN UINT16 LineWidth,
423 HiiGetLine( IN EFI_HII_PROTOCOL *This, IN FRAMEWORK_EFI_HII_HANDLE Handle, IN STRING_REF Token, IN OUT UINT16 *Index, IN UINT16 LineWidth, IN CHAR16 *LanguageString, IN OUT UINT16 *BufferLength, OUT EFI_STRING StringBuffer ) argument
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/HiiFont/
H A DHiiFont.h51 UINTN LineWidth; member in struct:_EFI_HII_ROW_INFO
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
H A DHiiFont.h56 UINTN LineWidth; ///< The width of the text on the line, in pixels. member in struct:_EFI_HII_ROW_INFO
125 pixels were not drawn. The LineWidth may describe pixels which
/device/linaro/bootloader/edk2/OptionRomPkg/Application/BltLibSample/
H A DBltLibSample.c190 UINTN LineWidth, TriWidth, ScreenWidth; local
223 LineWidth =
228 for (X = X2 - LineWidth; X < (X2 + LineWidth); X++) {
/device/linaro/bootloader/edk2/MdeModulePkg/Application/BootManagerMenuApp/
H A DBootManagerMenu.c98 UINTN LineWidth; local
100 LineWidth = 0;
113 Index++, LineWidth = LineWidth + IncrementValue
144 return LineWidth;
508 UINTN LineWidth; local
598 LineWidth = GetLineWidth (BootMenuData->TitleToken[Index]);
599 PrintCol = StartCol + (Width - LineWidth) / 2;
621 LineWidth = GetLineWidth (BootMenuData->HelpToken[Index]);
622 PrintCol = StartCol + (Width - LineWidth) /
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
H A DProcessOptions.c1430 UINT16 LineWidth; local
1444 LineWidth = (UINT16) (gHelpBlockWidth - 1);
1449 while ((StringLen = GetLineByWidth (StringPtr, LineWidth, &GlyphWidth, &Index, &OutputString)) != 0) {
1467 while((StringLen = GetLineByWidth (StringPtr, LineWidth, &GlyphWidth, &Index, &OutputString)) != 0) {
H A DFormDisplay.c417 Will copy LineWidth amount of a string in the OutputString buffer and return the
425 @param LineWidth Width of the desired string to extract in CHAR16
438 IN UINT16 LineWidth,
455 if (LineWidth == 0 || *GlyphWidth == 0) {
478 for (StrOffset = 0, GlyphOffset = 0; GlyphOffset <= LineWidth; StrOffset++) {
500 if ((InputString[*Index + StrOffset] == CHAR_SPACE) && (GlyphOffset <= LineWidth)) {
515 if (GlyphOffset > LineWidth) {
436 GetLineByWidth( IN CHAR16 *InputString, IN UINT16 LineWidth, IN OUT UINT16 *GlyphWidth, IN OUT UINTN *Index, OUT CHAR16 **OutputString ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
H A DFont.c1587 UINTN LineWidth; local
1857 LineWidth = 0;
1879 while (LineWidth + BltX < Image->Width && StringPtr[Index] != 0) {
1893 LineWidth += (UINTN) Cell[Index].AdvanceX;
1917 LineWidth -= (UINTN) (Cell[Index].AdvanceX - Cell[Index].Width - Cell[Index].OffsetX);
1922 if (LineWidth + BltX <= Image->Width ||
1923 (LineWidth + BltX > Image->Width && (Flags & EFI_HII_OUT_FLAG_CLIP_CLEAN_X) == 0)) {
1928 RowInfo[RowIndex].LineWidth = LineWidth;
1940 LineWidth
[all...]

Completed in 1733 milliseconds