Lines Matching refs:Xpos
297 UINT8 Xpos; in NarrowGlyphToBlt() local
324 for (Xpos = 0; Xpos < Width; Xpos++) { in NarrowGlyphToBlt()
325 if ((GlyphBuffer[Ypos] & (1 << (EFI_GLYPH_WIDTH - Xpos - 1))) != 0) { in NarrowGlyphToBlt()
326 Buffer[Ypos * ImageWidth + Xpos] = Foreground; in NarrowGlyphToBlt()
329 Buffer[Ypos * ImageWidth + Xpos] = Background; in NarrowGlyphToBlt()
379 UINT16 Xpos; in GlyphToBlt() local
420 for (Xpos = 0; Xpos < Cell->Width / 8; Xpos++) { in GlyphToBlt()
421 Data = *(GlyphBuffer + OffsetY + Xpos); in GlyphToBlt()
422 … for (Index = 0; Index < 8 && ((UINTN) (Xpos * 8 + Index + Cell->OffsetX) < RowWidth); Index++) { in GlyphToBlt()
424 BltBuffer[Ypos * ImageWidth + Xpos * 8 + Index] = Foreground; in GlyphToBlt()
427 BltBuffer[Ypos * ImageWidth + Xpos * 8 + Index] = Background; in GlyphToBlt()
437 Data = *(GlyphBuffer + OffsetY + Xpos); in GlyphToBlt()
438 …for (Index = 0; Index < Cell->Width % 8 && ((UINTN) (Xpos * 8 + Index + Cell->OffsetX) < RowWidth)… in GlyphToBlt()
440 BltBuffer[Ypos * ImageWidth + Xpos * 8 + Index] = Foreground; in GlyphToBlt()
443 BltBuffer[Ypos * ImageWidth + Xpos * 8 + Index] = Background; in GlyphToBlt()