Home
last modified time | relevance | path

Searched refs:CurrentSize (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
DPxeBcBoot.c1140 UINT64 CurrentSize; in PxeBcLoadBootFile() local
1148 CurrentSize = *BufferSize; in PxeBcLoadBootFile()
1178 if (CurrentSize < RequiredSize || Buffer == NULL) { in PxeBcLoadBootFile()
1182 CurrentSize = RequiredSize; in PxeBcLoadBootFile()
1186 CurrentSize = RequiredSize; in PxeBcLoadBootFile()
1192 Status = PxeBcReadBootFileList (Private, &CurrentSize, Buffer); in PxeBcLoadBootFile()
1195 } else if (CurrentSize < Private->BootFileSize || Buffer == NULL ) { in PxeBcLoadBootFile()
1199 CurrentSize = Private->BootFileSize; in PxeBcLoadBootFile()
1211 &CurrentSize, in PxeBcLoadBootFile()
1220 &CurrentSize, in PxeBcLoadBootFile()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Pei/
DPcd.c1350 IN OUT UINTN *CurrentSize, in SetPtrTypeSize() argument
1381 if ((*CurrentSize > MaxSize) || in SetPtrTypeSize()
1382 (*CurrentSize == MAX_ADDRESS)) { in SetPtrTypeSize()
1383 *CurrentSize = MaxSize; in SetPtrTypeSize()
1393 SizeTable[SizeTableIdx + 1] = (SIZE_INFO) *CurrentSize; in SetPtrTypeSize()
1404 SizeTable[SizeTableIdx + 1 + Index] = (SIZE_INFO) *CurrentSize; in SetPtrTypeSize()
1408 SizeTable[SizeTableIdx + 1] = (SIZE_INFO) *CurrentSize; in SetPtrTypeSize()
DService.h1112 IN OUT UINTN *CurrentSize,
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
DBootMaintenanceManagerCustomizedUiSupport.c380 UINTN CurrentSize; in BmmListThirdPartyDrivers() local
395 CurrentSize = UI_HII_DRIVER_LIST_SIZE; in BmmListThirdPartyDrivers()
437 if (Count >= CurrentSize) { in BmmListThirdPartyDrivers()
442 CurrentSize += UI_HII_DRIVER_LIST_SIZE; in BmmListThirdPartyDrivers()
/device/linaro/bootloader/edk2/MdePkg/Library/UefiFileHandleLib/
DUefiFileHandleLib.c708 IN OUT UINTN *CurrentSize, in StrnCatGrowLeft() argument
732 ASSERT(CurrentSize != 0); in StrnCatGrowLeft()
734 ASSERT(DestinationStartSize <= *CurrentSize); in StrnCatGrowLeft()
750 if (CurrentSize != NULL) { in StrnCatGrowLeft()
751 NewSize = *CurrentSize; in StrnCatGrowLeft()
755 *Destination = ReallocatePool(*CurrentSize, NewSize, *Destination); in StrnCatGrowLeft()
756 *CurrentSize = NewSize; in StrnCatGrowLeft()
/device/linaro/bootloader/edk2/MdeModulePkg/Application/UiApp/
DFrontPageCustomizedUiSupport.c584 UINTN CurrentSize; in UiListThirdPartyDrivers() local
599 CurrentSize = UI_HII_DRIVER_LIST_SIZE; in UiListThirdPartyDrivers()
641 if (Count >= CurrentSize) { in UiListThirdPartyDrivers()
646 CurrentSize += UI_HII_DRIVER_LIST_SIZE; in UiListThirdPartyDrivers()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/
DService.c1843 IN OUT UINTN *CurrentSize in SetPtrTypeSize() argument
1889 if ((*CurrentSize > MaxSize) || in SetPtrTypeSize()
1890 (*CurrentSize == MAX_ADDRESS)) { in SetPtrTypeSize()
1891 *CurrentSize = MaxSize; in SetPtrTypeSize()
1901 SizeTable[SizeTableIdx + 1] = (SIZE_INFO) *CurrentSize; in SetPtrTypeSize()
1912 SizeTable[SizeTableIdx + 1 + Index] = (SIZE_INFO) *CurrentSize; in SetPtrTypeSize()
1916 SizeTable[SizeTableIdx + 1] = (SIZE_INFO) *CurrentSize; in SetPtrTypeSize()
DService.h1162 IN OUT UINTN *CurrentSize
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
DMv.c243 UINTN CurrentSize; in GetDestinationLocation() local
264 CurrentSize = StrSize(DestPath); in GetDestinationLocation()
265 StrnCatGrow(&DestPath, &CurrentSize, &DestParameter[1], 0); in GetDestinationLocation()
/device/linaro/bootloader/edk2/OvmfPkg/Virtio10Dxe/
DVirtio10.c673 UINT16 CurrentSize; in Virtio10SetQueueNum() local
681 Status = Virtio10GetQueueNumMax (This, &CurrentSize); in Virtio10SetQueueNum()
685 return (CurrentSize == QueueSize) ? EFI_SUCCESS : EFI_UNSUPPORTED; in Virtio10SetQueueNum()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
DUefiShellLib.c3228 IN OUT UINTN *CurrentSize, in StrnCatGrow() argument
3251 if (CurrentSize != NULL && *CurrentSize == 0) { in StrnCatGrow()
3259 ASSERT(CurrentSize != 0); in StrnCatGrow()
3261 ASSERT(DestinationStartSize <= *CurrentSize); in StrnCatGrow()
3277 if (CurrentSize != NULL) { in StrnCatGrow()
3278 NewSize = *CurrentSize; in StrnCatGrow()
3283 *Destination = ReallocatePool(*CurrentSize, NewSize, *Destination); in StrnCatGrow()
3284 *CurrentSize = NewSize; in StrnCatGrow()
/device/linaro/bootloader/edk2/ShellPkg/Include/Library/
DShellLib.h1074 IN OUT UINTN *CurrentSize,
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
DDatabase.c1489 UINT16 CurrentSize; in InsertImagePackage() local
1529 CopyMem (&CurrentSize, PaletteInfo, sizeof (UINT16)); in InsertImagePackage()
1530 CurrentSize += sizeof (UINT16); in InsertImagePackage()
1531 PaletteSize += (UINT32) CurrentSize; in InsertImagePackage()
1532 PaletteInfo = (EFI_HII_IMAGE_PALETTE_INFO *) ((UINT8 *) PaletteInfo + CurrentSize); in InsertImagePackage()