Searched defs:SourceSize (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
H A DLzmaDecompress.c113 required to decompress the buffer specified by Source and SourceSize.
121 If SourceSize is less than LZMA_HEADER_SIZE, then ASSERT().
124 @param SourceSize The size, in bytes, of the source buffer.
127 by Source and SourceSize is decompressed.
130 by Source and SourceSize.
141 IN UINT32 SourceSize,
148 ASSERT(SourceSize >= LZMA_HEADER_SIZE);
167 @param SourceSize The size of source buffer.
183 IN UINTN SourceSize,
200 EncodedDataSize = (SizeT) (SourceSize
139 LzmaUefiDecompressGetInfo( IN CONST VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
181 LzmaUefiDecompress( IN CONST VOID *Source, IN UINTN SourceSize, IN OUT VOID *Destination, IN OUT VOID *Scratch ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Hand/
H A DLocate.c432 INTN SourceSize; local
466 SourceSize = (UINTN) TmpDevicePath - (UINTN) SourcePath;
492 if ((Size <= SourceSize) && CompareMem (SourcePath, TmpDevicePath, (UINTN) Size) == 0) {
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Image/
H A DImage.h89 UINTN SourceSize; member in struct:__anon10938
101 @param SourceSize The size in bytes of SourceBuffer.
136 IN UINTN SourceSize,
H A DImage.c250 if (EndPosition > FHand->SourceSize) {
251 *ReadSize = (UINT32)(FHand->SourceSize - Offset);
253 if (Offset >= FHand->SourceSize) {
991 @param SourceSize The size in bytes of SourceBuffer.
1029 IN UINTN SourceSize,
1078 FHand.SourceSize = SourceSize;
1080 if (SourceSize > 0) {
1095 &FHand.SourceSize,
1321 @param SourceSize Th
1024 CoreLoadImageCommon( IN BOOLEAN BootPolicy, IN EFI_HANDLE ParentImageHandle, IN EFI_DEVICE_PATH_PROTOCOL *FilePath, IN VOID *SourceBuffer OPTIONAL, IN UINTN SourceSize, IN EFI_PHYSICAL_ADDRESS DstBuffer OPTIONAL, IN OUT UINTN *NumberOfPages OPTIONAL, OUT EFI_HANDLE *ImageHandle, OUT EFI_PHYSICAL_ADDRESS *EntryPoint OPTIONAL, IN UINT32 Attribute ) argument
1345 CoreLoadImage( IN BOOLEAN BootPolicy, IN EFI_HANDLE ParentImageHandle, IN EFI_DEVICE_PATH_PROTOCOL *FilePath, IN VOID *SourceBuffer OPTIONAL, IN UINTN SourceSize, OUT EFI_HANDLE *ImageHandle ) argument
1431 CoreLoadImageEx( IN EFI_PE32_IMAGE_PROTOCOL *This, IN EFI_HANDLE ParentImageHandle, IN EFI_DEVICE_PATH_PROTOCOL *FilePath, IN VOID *SourceBuffer OPTIONAL, IN UINTN SourceSize, IN EFI_PHYSICAL_ADDRESS DstBuffer OPTIONAL, OUT UINTN *NumberOfPages OPTIONAL, OUT EFI_HANDLE *ImageHandle, OUT EFI_PHYSICAL_ADDRESS *EntryPoint OPTIONAL, IN UINT32 Attribute ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c637 required to decompress the buffer specified by Source and SourceSize.
653 @param SourceSize The size, in bytes, of the source buffer.
656 by Source and SourceSize is decompressed..
659 by Source and SourceSize.
668 and SourceSize.
674 IN UINT32 SourceSize,
685 if (SourceSize < 8) {
690 if (SourceSize < (CompressedSize + 8)) {
672 UefiDecompressGetInfo( IN CONST VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/DxeMain/
H A DDxeMain.c752 and SourceSize. If the size of the uncompressed buffer or the size of the
765 @param SourceSize The size, in bytes, of the source buffer.
769 SourceSize is decompressed.
773 SourceSize.
781 SourceSize.
789 IN UINT32 SourceSize,
797 return UefiDecompressGetInfo (Source, SourceSize, DestinationSize, ScratchSize);
810 If the compressed source data specified by Source and SourceSize is
812 the compressed source data specified by Source and SourceSize is not in a
817 @param SourceSize SourceSizeTh
786 DxeMainUefiDecompressGetInfo( IN EFI_DECOMPRESS_PROTOCOL *This, IN VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
837 DxeMainUefiDecompress( IN EFI_DECOMPRESS_PROTOCOL *This, IN VOID *Source, IN UINT32 SourceSize, IN OUT VOID *Destination, IN UINT32 DestinationSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c643 required to decompress the buffer specified by Source and SourceSize.
659 @param SourceSize The size, in bytes, of the source buffer.
662 by Source and SourceSize is decompressed.
665 by Source and SourceSize.
674 and SourceSize.
680 IN UINT32 SourceSize,
691 if (SourceSize < 8) {
696 if (SourceSize < (CompressedSize + 8)) {
678 UefiDecompressGetInfo( IN CONST VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DLoadPciRom.c73 UINTN SourceSize; local
147 SourceSize = (UINTN) Node->Info->FileSize;
148 File1Buffer = AllocateZeroPool (SourceSize);
150 Status = gEfiShellProtocol->ReadFile(Node->Handle, &SourceSize, File1Buffer);
157 SourceSize,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DPiSmmIpl.c862 UINTN SourceSize; local
877 &SourceSize
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPVidPn.cpp1669 RTRECTSIZE SourceSize; local
1677 Status = vboxVidPnQueryPinnedSourceMode(hVidPn, pVidPnInterface, VidPnSourceId, &SourceSize);
1684 if (memcmp(&TargetSize, &SourceSize, sizeof (TargetSize)) && TargetSize.cx)
1686 if (!SourceSize.cx)

Completed in 79 milliseconds