Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
DString.c72 UINTN SrcLen; in EfiStrnCpy() local
74 SrcLen = EfiStrLen (Src); in EfiStrnCpy()
77 while (Index < Length && Index < SrcLen) { in EfiStrnCpy()
81 for (Index = SrcLen; Index < Length; Index++) { in EfiStrnCpy()
324 UINTN SrcLen; in EfiAsciiStrnCpy() local
326 SrcLen = EfiAsciiStrLen (Src); in EfiAsciiStrnCpy()
329 while (Index < Length && Index < SrcLen) { in EfiAsciiStrnCpy()
333 for (Index = SrcLen; Index < Length; Index++) { in EfiAsciiStrnCpy()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
DExpression.c1140 UINTN SrcLen; in IfrToString() local
1193 SrcLen = Value.BufferLen; in IfrToString()
1197 SrcLen = GetLengthForValue(&Value); in IfrToString()
1200 TmpBuf = AllocateZeroPool (SrcLen + 3); in IfrToString()
1203 CopyMem (TmpBuf, SrcBuf, SrcLen); in IfrToString()
1207 CopyMem (TmpBuf, SrcBuf, SrcLen * sizeof (CHAR16)); in IfrToString()