Lines Matching refs:SourceY
1932 IN UINTN SourceY, in BiosVideoGraphicsOutputVbeBlt() argument
1986 if (SourceY + Height > Mode->VerticalResolution) { in BiosVideoGraphicsOutputVbeBlt()
2022 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY); SrcY++, DstY++) { in BiosVideoGraphicsOutputVbeBlt()
2043 if (DestinationY <= SourceY) { in BiosVideoGraphicsOutputVbeBlt()
2044 SrcY = SourceY + Index; in BiosVideoGraphicsOutputVbeBlt()
2047 SrcY = SourceY + Height - Index - 1; in BiosVideoGraphicsOutputVbeBlt()
2124 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); SrcY++, DstY++) { in BiosVideoGraphicsOutputVbeBlt()
2356 IN UINTN SourceY, in BiosVideoGraphicsOutputVgaBlt() argument
2419 if (SourceY + Height > BiosVideoPrivate->ModeData[CurrentMode].VerticalResolution) { in BiosVideoGraphicsOutputVgaBlt()
2459 SourceOffset = (SourceY << 6) + (SourceY << 4) + (SourceX >> 3); in BiosVideoGraphicsOutputVgaBlt()
2477 for (Rows = 0, Y = SourceY; Rows < Height; Rows++, Y++, BltBuffer += (Delta >> 2)) { in BiosVideoGraphicsOutputVgaBlt()
2501 … SourceAddress = (UINT8 *) (MemAddress + (SourceY << 6) + (SourceY << 4) + (SourceX >> 3)); in BiosVideoGraphicsOutputVgaBlt()
2516 SourceOffset = (SourceY << 6) + (SourceY << 4) + (SourceX >> 3); in BiosVideoGraphicsOutputVgaBlt()
2693 …BiosVideoPrivate->LineBuffer[Index1] = VgaConvertColor (&BltBuffer[(SourceY + Index) * (Delta >> 2… in BiosVideoGraphicsOutputVgaBlt()