Searched refs:SourceY (Results 1 - 16 of 16) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/Library/GopBltLib/
H A DGopBltLib.c88 @param[in] SourceY - The Y coordinate of the source for BltOperation
108 IN UINTN SourceY,
125 SourceY,
141 @param[in] SourceY - The Y coordinate of the source for BltOperation
162 IN UINTN SourceY,
174 SourceY,
227 @param[in] SourceY Y location within video
241 IN UINTN SourceY,
250 SourceY,
266 @param[in] SourceY
104 InternalGopBltCommon( IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
158 BltLibGopBlt( IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
238 BltLibVideoToBltBuffer( OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, IN UINTN SourceX, IN UINTN SourceY, IN UINTN Width, IN UINTN Height ) argument
280 BltLibVideoToBltBufferEx( OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
363 BltLibBufferToVideoEx( IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
405 BltLibVideoToVideo( IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/Include/Library/
H A DBltLib.h45 @param[in] SourceY - The Y coordinate of the source for BltOperation
66 IN UINTN SourceY,
105 @param[in] SourceY Y location within video
119 IN UINTN SourceY,
131 @param[in] SourceY Y location within video
148 IN UINTN SourceY,
188 @param[in] SourceY Y location within BltBuffer
205 IN UINTN SourceY,
218 @param[in] SourceY Y location within video
233 IN UINTN SourceY,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/
H A DVBoxVgaGraphicsOutput.c225 IN UINTN SourceY,
244 SourceY - The Y coordinate of the source for BltOperation
304 // Make sure the SourceX, SourceY, DestinationX, DestinationY, Width, and Height parameters
311 if (SourceY + Height > Private->ModeData[CurrentMode].VerticalResolution) {
342 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY) && BltBuffer; SrcY++, DstY++) {
368 SourceOffset = (SourceY * Private->ModeData[CurrentMode].HorizontalResolution) + (SourceX);
370 VBoxVgaGraphicsOutputBlt(This, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL*)Private->TmpBuf, EfiBltVideoToBltBuffer, SourceX, SourceY, 0, 0, ScreenWidth - SourceX, ScreenHeight - SourceY, 0); local
371 VBoxVgaGraphicsOutputBlt(This, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL*)Private->TmpBuf, EfiBltBufferToVideo, 0, 0, DestinationX, DestinationY, ScreenWidth - SourceX, ScreenHeight - SourceY, 0);
389 for (SrcY = SourceY, Dst
220 VBoxVgaGraphicsOutputBlt( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
[all...]
H A DVBoxVgaUgaDraw.c152 IN UINTN SourceY,
198 // Make sure the SourceX, SourceY, DestinationX, DestinationY, Width, and Height parameters
205 if (SourceY + Height > Private->ModeData[Private->CurrentMode].VerticalResolution) {
236 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY); SrcY++, DstY++) {
262 SourceOffset = (SourceY * Private->ModeData[Private->CurrentMode].HorizontalResolution) + (SourceX);
264 VBoxVgaUgaDrawBlt(This, (EFI_UGA_PIXEL *)Private->TmpBuf, EfiUgaVideoToBltBuffer, SourceX, SourceY, 0, 0, ScreenWidth - SourceX, ScreenHeight - SourceY, 0); local
265 VBoxVgaUgaDrawBlt(This, (EFI_UGA_PIXEL *)Private->TmpBuf, EfiUgaBltBufferToVideo, 0, 0, DestinationX, DestinationY, ScreenWidth - SourceX, ScreenHeight - SourceY, 0);
282 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); Src
147 VBoxVgaUgaDrawBlt( IN EFI_UGA_DRAW_PROTOCOL *This, IN EFI_UGA_PIXEL *BltBuffer, OPTIONAL IN EFI_UGA_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/Library/FrameBufferBltLib/
H A DFrameBufferBltLib.c136 @param[in] SourceY - The Y coordinate of the source for BltOperation
157 IN UINTN SourceY,
170 SourceY,
181 SourceY,
201 SourceY,
367 @param[in] SourceY Y location within video
381 IN UINTN SourceY,
389 SourceY,
405 @param[in] SourceY Y location within video
422 IN UINTN SourceY,
153 BltLibGopBlt( IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
378 BltLibVideoToBltBuffer( OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, IN UINTN SourceX, IN UINTN SourceY, IN UINTN Width, IN UINTN Height ) argument
419 BltLibVideoToBltBufferEx( OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
563 BltLibBufferToVideoEx( IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
661 BltLibVideoToVideo( IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitterGraphics.c170 EfiBltVideoFill - Write data from the BltBuffer pixel (SourceX, SourceY)
176 (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
182 (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
184 (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
188 (SourceX, SourceY) (SourceX + Width, SourceY + Height) .
200 @param SourceY Y coordinate of source for the BltBuffer.
220 IN UINTN SourceY,
215 ConSplitterGraphicsOutputBlt( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta OPTIONAL ) argument
489 ConSplitterUgaDrawBlt( IN EFI_UGA_DRAW_PROTOCOL *This, IN EFI_UGA_PIXEL *BltBuffer, OPTIONAL IN EFI_UGA_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta OPTIONAL ) argument
[all...]
H A DConSplitter.h1804 EfiBltVideoFill - Write data from the BltBuffer pixel (SourceX, SourceY)
1810 (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
1816 (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
1818 (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
1822 (SourceX, SourceY) (SourceX + Width, SourceY + Height) .
1834 @param SourceY Y coordinate of source for the BltBuffer.
1854 IN UINTN SourceY,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/CirrusLogic5430Dxe/
H A DCirrusLogic5430GraphicsOutput.c192 IN UINTN SourceY,
211 SourceY - The Y coordinate of the source for BltOperation
268 // Make sure the SourceX, SourceY, DestinationX, DestinationY, Width, and Height parameters
275 if (SourceY + Height > Private->ModeData[CurrentMode].VerticalResolution) {
306 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY); SrcY++, DstY++) {
344 SourceOffset = (SourceY * Private->ModeData[CurrentMode].HorizontalResolution) + (SourceX);
413 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); SrcY++, DstY++) {
439 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); Src
187 CirrusLogic5430GraphicsOutputBlt( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
[all...]
H A DCirrusLogic5430UgaDraw.c117 IN UINTN SourceY,
163 // Make sure the SourceX, SourceY, DestinationX, DestinationY, Width, and Height parameters
170 if (SourceY + Height > Private->ModeData[Private->CurrentMode].VerticalResolution) {
201 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY); SrcY++, DstY++) {
239 SourceOffset = (SourceY * Private->ModeData[Private->CurrentMode].HorizontalResolution) + (SourceX);
308 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); SrcY++, DstY++) {
334 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); SrcY++, DstY++) {
112 CirrusLogic5430UgaDrawBlt( IN EFI_UGA_DRAW_PROTOCOL *This, IN EFI_UGA_PIXEL *BltBuffer, OPTIONAL IN EFI_UGA_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DUgaDraw.h91 EfiUgaVideoFill, ///< Write data from the BltBuffer pixel (SourceX, SourceY)
97 ///< (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
104 ///< (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
106 ///< (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
110 EfiUgaVideoToVideo, ///< Copy from the video display rectangle (SourceX, SourceY)
111 ///< (SourceX + Width, SourceY + Height) .to the video display rectangle
127 @param[in] SourceY - Y coordinate of source for the BltBuffer.
146 IN UINTN SourceY,
[all...]
H A DGraphicsOutput.h156 /// Write data from the BltBuffer pixel (SourceX, SourceY)
165 /// (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
175 /// (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
177 /// (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
184 /// Copy from the video display rectangle (SourceX, SourceY)
185 /// (SourceX + Width, SourceY + Height) .to the video display rectangle
203 @param SourceY Y coordinate of source for the BltBuffer.
222 IN UINTN SourceY,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Include/Protocol/
H A DUgaDraw.h104 <B>EfiUgaVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
110 (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
117 (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
119 (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
123 <B>EfiUgaVideoToVideo</B> - Copy from the video display rectangle (SourceX, SourceY)
124 (SourceX + Width, SourceY + Height) .to the video display rectangle
134 @param[in] SourceY - Y coordinate of source for the BltBuffer.
153 IN UINTN SourceY,
[all...]
H A DGraphicsOutput.h121 <B>EfiBltVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
127 (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
134 (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
136 (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
140 <B>EfiBltVideoToVideo</B> - Copy from the video display rectangle (SourceX, SourceY)
141 (SourceX + Width, SourceY + Height) .to the video display rectangle
150 @param SourceY Y coordinate of source for the BltBuffer.
169 IN UINTN SourceY,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/
H A DBiosVideo.h320 @param SourceY The Y coordinate of the source for BltOperation
347 IN UINTN SourceY,
363 @param SourceY The Y coordinate of the source for BltOperation
390 IN UINTN SourceY,
H A DBiosVideo.c2187 @param SourceY The Y coordinate of the source for BltOperation
2214 IN UINTN SourceY,
2265 if (SourceY + Height > Mode->VerticalResolution) {
2301 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY); SrcY++, DstY++) {
2322 if (DestinationY <= SourceY) {
2323 SrcY = SourceY + Index;
2326 SrcY = SourceY + Height - Index - 1;
2404 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); SrcY++, DstY++) {
2456 @param SourceY Th
2209 BiosVideoVbeBltWorker( IN BIOS_VIDEO_DEV *BiosVideoPrivate, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta, IN BIOS_VIDEO_MODE_DATA *Mode ) argument
2478 BiosVideoGraphicsOutputVbeBlt( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
2700 BiosVideoGraphicsOutputVgaBlt( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/QemuVideoDxe/
H A DGop.c210 IN UINTN SourceY,
229 SourceY - The Y coordinate of the source for BltOperation
265 SourceY,
205 QemuVideoGraphicsOutputBlt( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation, IN UINTN SourceX, IN UINTN SourceY, IN UINTN DestinationX, IN UINTN DestinationY, IN UINTN Width, IN UINTN Height, IN UINTN Delta ) argument

Completed in 94 milliseconds