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.c223 *StringFontInfo = (EFI_FONT_INFO *) AllocateZeroPool (GlobalFont->FontInfoSize); in GetStringFontInfo()
227 CopyMem (*StringFontInfo, GlobalFont->FontInfo, GlobalFont->FontInfoSize); in GetStringFontInfo()
283 UINTN FontInfoSize; in FindStringBlock() local
506 FontInfoSize = sizeof (EFI_FONT_INFO) - sizeof (CHAR16) + StringSize; in FindStringBlock()
507 FontInfo = (EFI_FONT_INFO *) AllocateZeroPool (FontInfoSize); in FindStringBlock()
DFont.c983 OUT UINTN *FontInfoSize OPTIONAL in GetSystemFont()
1015 if (FontInfoSize != NULL) { in GetSystemFont()
1016 *FontInfoSize = InfoSize; in GetSystemFont()
1206 if (CompareMem (GlobalFont->FontInfo, FontInfo, GlobalFont->FontInfoSize) == 0) { in IsFontInfoExisted()
2875 …ingInfoOutLen = sizeof (EFI_FONT_DISPLAY_INFO) - sizeof (EFI_FONT_INFO) + GlobalFont->FontInfoSize; in HiiGetFontInfo()
2884 CopyMem (&(*StringInfoOut)->FontInfo, GlobalFont->FontInfo, GlobalFont->FontInfoSize); in HiiGetFontInfo()
DHiiDatabase.h214 UINTN FontInfoSize; member
493 OUT UINTN *FontInfoSize OPTIONAL
DDatabase.c1166 UINT32 FontInfoSize; in InsertFontPackage() local
1192 FontInfoSize = sizeof (EFI_FONT_INFO) + HeaderSize - sizeof (EFI_HII_FONT_PACKAGE_HDR); in InsertFontPackage()
1193 FontInfo = (EFI_FONT_INFO *) AllocateZeroPool (FontInfoSize); in InsertFontPackage()
1200 …StrCpyS (FontInfo->FontName, (FontInfoSize - OFFSET_OF(EFI_FONT_INFO,FontName)) / sizeof (CHAR16),… in InsertFontPackage()
1245 GlobalFont->FontInfoSize = FontInfoSize; in InsertFontPackage()