Home
last modified time | relevance | path

Searched refs:tg_tp (Results 1 – 4 of 4) sorted by relevance

/src/stand/efi/libefi/
H A Defi_console.c156 idx = p.tp_col + p.tp_row * state->tg_tp.tp_col; in term_image_display()
157 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in term_image_display()
182 if (p->tp_row >= state->tg_tp.tp_row) in efi_text_cursor()
183 row = state->tg_tp.tp_row - 1; in efi_text_cursor()
186 if (p->tp_col >= state->tg_tp.tp_col) in efi_text_cursor()
187 col = state->tg_tp.tp_col - 1; in efi_text_cursor()
199 px = screen_buffer + p->tp_col + p->tp_row * state->tg_tp.tp_col; in efi_text_printchar()
222 p->tp_row == state->tg_tp.tp_row - 1 && in efi_text_printchar()
223 p->tp_col == state->tg_tp.tp_col - 1) in efi_text_printchar()
242 idx = p->tp_col + p->tp_row * state->tg_tp.tp_col; in efi_text_putchar()
[all …]
/src/stand/i386/libi386/
H A Dvidconsole.c115 idx = p.tp_col + p.tp_row * state->tg_tp.tp_col; in term_image_display()
116 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in term_image_display()
320 idx = p->tp_col + p->tp_row * state->tg_tp.tp_col; in vidc_text_printchar()
348 idx = p->tp_col + p->tp_row * state->tg_tp.tp_col; in vidc_text_putchar()
349 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in vidc_text_putchar()
400 drow = d.tp_row * state->tg_tp.tp_col; in vidc_text_copy()
401 srow = s.tp_row * state->tg_tp.tp_col; in vidc_text_copy()
422 drow = d.tp_row * state->tg_tp.tp_col; in vidc_text_copy()
423 srow = s.tp_row * state->tg_tp.tp_col; in vidc_text_copy()
442 drow = d.tp_row * state->tg_tp.tp_col; in vidc_text_copy()
[all …]
/src/stand/common/
H A Dgfx_fb.c1038 idx = p->tp_col + p->tp_row * state->tg_tp.tp_col; in gfx_fb_putchar()
1039 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in gfx_fb_putchar()
1082 row = &screen_buffer[p.tp_row * state->tg_tp.tp_col]; in gfx_fb_fill()
1110 if (p.tp_col >= state->tg_tp.tp_col) in gfx_fb_cursor_draw()
1111 p.tp_col = state->tg_tp.tp_col - 1; in gfx_fb_cursor_draw()
1112 if (p.tp_row >= state->tg_tp.tp_row) in gfx_fb_cursor_draw()
1113 p.tp_row = state->tg_tp.tp_row - 1; in gfx_fb_cursor_draw()
1114 idx = p.tp_col + p.tp_row * state->tg_tp.tp_col; in gfx_fb_cursor_draw()
1115 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in gfx_fb_cursor_draw()
1261 soffset = s->tp_col + s->tp_row * state->tg_tp.tp_col; in gfx_fb_copy_line()
[all …]
H A Dgfx_fb.h211 teken_pos_t tg_tp; /* Terminal dimensions */ member