Searched refs:DstSize (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DCompress.h43 IN OUT UINT32 *DstSize
59 IN OUT UINT32 *DstSize
74 DstSize - On input, the size of DstBuffer; On output,
80 DstSize contains the size needed.
92 IN OUT UINT32 *DstSize
H A DDecompress.h31 OUT UINT32 *DstSize,
44 DstSize - The size of destination buffer.
59 IN UINT32 DstSize,
74 DstSize - The size of destination buffer.
89 OUT UINT32 *DstSize,
102 DstSize - The size of destination buffer.
117 IN UINT32 DstSize,
132 DstSize - The size of destination buffer.
148 OUT UINT32 *DstSize,
158 IN UINT32 DstSize,
[all...]
H A DDecompress.c667 OUT UINT32 *DstSize,
680 DstSize - The size of destination buffer.
699 *DstSize = Src[4] + (Src[5] << 8) + (Src[6] << 16) + (Src[7] << 24);
708 IN UINT32 DstSize,
723 DstSize - The size of destination buffer.
763 if (DstSize != OrigSize) {
802 OUT UINT32 *DstSize,
815 DstSize - The size of destination buffer.
825 return GetInfo (Source, SrcSize, DstSize, ScratchSize);
832 OUT UINT32 *DstSize,
664 GetInfo( IN VOID *Source, IN UINT32 SrcSize, OUT UINT32 *DstSize, OUT UINT32 *ScratchSize ) argument
704 Decompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
799 EfiGetInfo( IN VOID *Source, IN UINT32 SrcSize, OUT UINT32 *DstSize, OUT UINT32 *ScratchSize ) argument
829 TianoGetInfo( IN VOID *Source, IN UINT32 SrcSize, OUT UINT32 *DstSize, OUT UINT32 *ScratchSize ) argument
859 EfiDecompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
894 TianoDecompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
929 Extract( IN VOID *Source, IN UINT32 SrcSize, OUT VOID **Destination, OUT UINT32 *DstSize, IN UINTN Algorithm ) argument
[all...]
H A DEfiCompress.c272 IN OUT UINT32 *DstSize
285 DstSize - On input, the size of DstBuffer; On output,
291 DstSize contains the size needed.
315 mDstUpperLimit = mDst + *DstSize;
352 if (mCompSize + 1 + 8 > *DstSize) {
353 *DstSize = mCompSize + 1 + 8;
356 *DstSize = mCompSize + 1 + 8;
H A DTianoCompress.c278 IN OUT UINT32 *DstSize
291 DstSize - On input, the size of DstBuffer; On output,
300 DstSize contains the size needed.
325 mDstUpperLimit = mDst +*DstSize;
358 if (mCompSize + 1 + 8 > *DstSize) {
359 *DstSize = mCompSize + 1 + 8;
362 *DstSize = mCompSize + 1 + 8;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DCompress.h24 @param[in, out] DstSize On input the size (in bytes) of DstBuffer, on
28 @retval EFI_BUFFER_TOO_SMALL The buffer was too small. DstSize is required.
36 IN OUT UINT64 *DstSize
H A DCompress.c1341 @param[in, out] DstSize On input the size (in bytes) of DstBuffer, on
1345 @retval EFI_BUFFER_TOO_SMALL The buffer was too small. DstSize is required.
1353 IN OUT UINT64 *DstSize
1374 mDstUpperLimit = mDst +*DstSize;
1407 if (mCompSize + 1 + 8 > *DstSize) {
1408 *DstSize = mCompSize + 1 + 8;
1411 *DstSize = mCompSize + 1 + 8;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c97 IN OUT UINT32 *DstSize
118 DstSize contains the size needed.
144 mDstUpperLimit = mDst +*DstSize;
181 if (mCompSize + 1 + 8 > *DstSize) {
182 *DstSize = mCompSize + 1 + 8;
185 *DstSize = mCompSize + 1 + 8;
1750 UINT32 DstSize; local
1765 DstSize=0;
1938 // First call TianoCompress to get DstSize
1943 Status = TianoCompress ((UINT8 *)FileBuffer, InputLength, OutBuffer, &DstSize);
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dblitter.cpp964 RTRECTSIZE DstSize = {pBlitter->CurrentMural.width, pBlitter->CurrentMural.height}; local
965 crBltCheckSetupViewport(pBlitter, &DstSize, false);
976 RTRECTSIZE DstSize = {pBlitter->CurrentMural.width, pBlitter->CurrentMural.height}; local
984 crBltBlitTexBuf(pBlitter, pSrc, paSrcRects, fBb ? GL_BACK : GL_FRONT, &DstSize, paDstRects, cRects, fFlags);
998 RTRECTSIZE DstSize = {(uint32_t)pDst->width, (uint32_t)pDst->height}; local
1009 crBltBlitTexBuf(pBlitter, pSrc, pSrcRect, GL_DRAW_FRAMEBUFFER, &DstSize, pDstRect, cRects, fFlags);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VolInfo/
H A DVolInfo.c1238 UINT32 DstSize; local
1339 Status = GetInfoFunction (CompressedBuffer, CompressedLength, &DstSize, &ScratchSize);
1345 if (DstSize != UncompressedLength) {

Completed in 415 milliseconds