Lines Matching refs:Xpos
254 UINT16 Xpos; in Output1bitPixel() local
294 for (Xpos = 0; Xpos < Image->Width / 8; Xpos++) { in Output1bitPixel()
295 Byte = *(Data + OffsetY + Xpos); in Output1bitPixel()
298 BitMapPtr[Ypos * Image->Width + Xpos * 8 + (8 - Index - 1)] = PaletteValue[1]; in Output1bitPixel()
300 BitMapPtr[Ypos * Image->Width + Xpos * 8 + (8 - Index - 1)] = PaletteValue[0]; in Output1bitPixel()
309 Byte = *(Data + OffsetY + Xpos); in Output1bitPixel()
312 BitMapPtr[Ypos * Image->Width + Xpos * 8 + Index] = PaletteValue[1]; in Output1bitPixel()
314 BitMapPtr[Ypos * Image->Width + Xpos * 8 + Index] = PaletteValue[0]; in Output1bitPixel()
343 UINT16 Xpos; in Output4bitPixel() local
383 for (Xpos = 0; Xpos < Image->Width / 2; Xpos++) { in Output4bitPixel()
384 Byte = *(Data + OffsetY + Xpos); in Output4bitPixel()
385 BitMapPtr[Ypos * Image->Width + Xpos * 2] = PaletteValue[Byte >> 4]; in Output4bitPixel()
386 BitMapPtr[Ypos * Image->Width + Xpos * 2 + 1] = PaletteValue[Byte & 0x0F]; in Output4bitPixel()
393 Byte = *(Data + OffsetY + Xpos); in Output4bitPixel()
394 BitMapPtr[Ypos * Image->Width + Xpos * 2] = PaletteValue[Byte >> 4]; in Output4bitPixel()
421 UINT16 Xpos; in Output8bitPixel() local
460 for (Xpos = 0; Xpos < Image->Width; Xpos++) { in Output8bitPixel()
461 Byte = *(Data + OffsetY + Xpos); in Output8bitPixel()
462 BitMapPtr[OffsetY + Xpos] = PaletteValue[Byte]; in Output8bitPixel()
537 UINTN Xpos; in ImageToBlt() local
562 for (Xpos = 0; Xpos < Width; Xpos++) { in ImageToBlt()
563 SrcPixel = BltBuffer[OffsetY1 + Xpos]; in ImageToBlt()
566 ImageOut->Image.Bitmap[OffsetY2 + BltX + Xpos] = SrcPixel; in ImageToBlt()
569 ImageOut->Image.Bitmap[OffsetY2 + BltX + Xpos] = SrcPixel; in ImageToBlt()
1212 UINTN Xpos; in HiiDrawImage() local
1297 for (Xpos = 0; Xpos < Width; Xpos++) { in HiiDrawImage()
1298 BltBuffer[OffsetY2 + Xpos] = Image->Bitmap[OffsetY1 + Xpos]; in HiiDrawImage()