Home
last modified time | relevance | path

Searched refs:FontInfoSize (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
DString.c222 *StringFontInfo = (EFI_FONT_INFO *) AllocateZeroPool (GlobalFont->FontInfoSize); in GetStringFontInfo()
226 CopyMem (*StringFontInfo, GlobalFont->FontInfo, GlobalFont->FontInfoSize); in GetStringFontInfo()
282 UINTN FontInfoSize; in FindStringBlock() local
504 FontInfoSize = sizeof (EFI_FONT_INFO) - sizeof (CHAR16) + StringSize; in FindStringBlock()
505 FontInfo = (EFI_FONT_INFO *) AllocateZeroPool (FontInfoSize); in FindStringBlock()
DFont.c971 OUT UINTN *FontInfoSize OPTIONAL in GetSystemFont()
1003 if (FontInfoSize != NULL) { in GetSystemFont()
1004 *FontInfoSize = InfoSize; in GetSystemFont()
1194 if (CompareMem (GlobalFont->FontInfo, FontInfo, GlobalFont->FontInfoSize) == 0) { in IsFontInfoExisted()
2858 …ingInfoOutLen = sizeof (EFI_FONT_DISPLAY_INFO) - sizeof (EFI_FONT_INFO) + GlobalFont->FontInfoSize; in HiiGetFontInfo()
2867 CopyMem (&(*StringInfoOut)->FontInfo, GlobalFont->FontInfo, GlobalFont->FontInfoSize); in HiiGetFontInfo()
DHiiDatabase.h210 UINTN FontInfoSize; member
481 OUT UINTN *FontInfoSize OPTIONAL
DDatabase.c1151 UINT32 FontInfoSize; in InsertFontPackage() local
1177 FontInfoSize = sizeof (EFI_FONT_INFO) + HeaderSize - sizeof (EFI_HII_FONT_PACKAGE_HDR); in InsertFontPackage()
1178 FontInfo = (EFI_FONT_INFO *) AllocateZeroPool (FontInfoSize); in InsertFontPackage()
1185 …StrCpyS (FontInfo->FontName, (FontInfoSize - OFFSET_OF(EFI_FONT_INFO,FontName)) / sizeof (CHAR16),… in InsertFontPackage()
1230 GlobalFont->FontInfoSize = FontInfoSize; in InsertFontPackage()