Home
last modified time | relevance | path

Searched refs:DestinationStartSize (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/MdePkg/Library/UefiFileHandleLib/
DUefiFileHandleLib.c713 UINTN DestinationStartSize; in StrnCatGrowLeft() local
733 DestinationStartSize = StrSize(*Destination); in StrnCatGrowLeft()
734 ASSERT(DestinationStartSize <= *CurrentSize); in StrnCatGrowLeft()
736 DestinationStartSize = 0; in StrnCatGrowLeft()
752 while (NewSize < (DestinationStartSize + Count)) { in StrnCatGrowLeft()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
DUefiShellLib.c3233 UINTN DestinationStartSize; in StrnCatGrow() local
3260 DestinationStartSize = StrSize(*Destination); in StrnCatGrow()
3261 ASSERT(DestinationStartSize <= *CurrentSize); in StrnCatGrow()
3263 DestinationStartSize = 0; in StrnCatGrow()
3279 if (NewSize < DestinationStartSize + (Count * sizeof(CHAR16))) { in StrnCatGrow()
3280 while (NewSize < (DestinationStartSize + (Count*sizeof(CHAR16)))) { in StrnCatGrow()