Home | History | Annotate | Download | only in HiiDatabaseDxe

Lines Matching refs:Xpos

297   UINT8                                Xpos;

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