Home
last modified time | relevance | path

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

/device/linaro/bootloader/OpenPlatformPkg/Drivers/Spi/Devices/
DMvSpiFlash.c267 UINTN ByteAddr, ChunkLength, ActualIndex, PageSize; in MvSpiFlashWrite() local
276 for (ActualIndex = 0; ActualIndex < Length; ActualIndex += ChunkLength) { in MvSpiFlashWrite()
283 ChunkLength = MIN(Length - ActualIndex, (UINT64) (PageSize - ByteAddr)); in MvSpiFlashWrite()
288 Status = MvSpiFlashWriteCommon (Slave, Cmd, AddrSize + 1, Buf + ActualIndex, in MvSpiFlashWrite()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
DBmBootDescription.c124 UINTN ActualIndex; in BmEliminateExtraSpaces() local
126 for (Index = 0, ActualIndex = 0; Str[Index] != L'\0'; Index++) { in BmEliminateExtraSpaces()
127 if ((Str[Index] != L' ') || ((ActualIndex > 0) && (Str[ActualIndex - 1] != L' '))) { in BmEliminateExtraSpaces()
128 Str[ActualIndex++] = Str[Index]; in BmEliminateExtraSpaces()
131 Str[ActualIndex] = L'\0'; in BmEliminateExtraSpaces()