• Home
  • Raw
  • Download

Lines Matching refs:Ypos

255   UINT16                             Ypos;  in Output1bitPixel()  local
289 for (Ypos = 0; Ypos < Image->Height; Ypos++) { in Output1bitPixel()
290 OffsetY = BITMAP_LEN_1_BIT (Image->Width, Ypos); 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()
312 BitMapPtr[Ypos * Image->Width + Xpos * 8 + Index] = PaletteValue[1]; in Output1bitPixel()
314 BitMapPtr[Ypos * Image->Width + Xpos * 8 + Index] = PaletteValue[0]; in Output1bitPixel()
344 UINT16 Ypos; in Output4bitPixel() local
378 for (Ypos = 0; Ypos < Image->Height; Ypos++) { in Output4bitPixel()
379 OffsetY = BITMAP_LEN_4_BIT (Image->Width, Ypos); 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()
394 BitMapPtr[Ypos * Image->Width + Xpos * 2] = PaletteValue[Byte >> 4]; in Output4bitPixel()
422 UINT16 Ypos; in Output8bitPixel() local
455 for (Ypos = 0; Ypos < Image->Height; Ypos++) { in Output8bitPixel()
456 OffsetY = BITMAP_LEN_8_BIT (Image->Width, Ypos); in Output8bitPixel()
487 UINT16 Ypos; in Output24bitPixel() local
495 for (Ypos = 0; Ypos < Image->Height; Ypos++) { in Output24bitPixel()
496 OffsetY = BITMAP_LEN_8_BIT (Image->Width, Ypos); in Output24bitPixel()
538 UINTN Ypos; in ImageToBlt() local
559 for (Ypos = 0; Ypos < Height; Ypos++) { in ImageToBlt()
560 OffsetY1 = Width * Ypos; in ImageToBlt()
561 OffsetY2 = ImageOut->Width * (BltY + Ypos); in ImageToBlt()
1213 UINTN Ypos; in HiiDrawImage() local
1294 for (Ypos = 0; Ypos < Height; Ypos++) { in HiiDrawImage()
1295 OffsetY1 = Image->Width * Ypos; in HiiDrawImage()
1296 OffsetY2 = Width * Ypos; in HiiDrawImage()