Home
last modified time | relevance | path

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

/freebsd/stand/i386/libi386/
H A Dvidconsole.c108 if (screen_buffer == NULL) in term_image_display()
118 screen_buffer[idx].a.ta_format |= TF_IMAGE; in term_image_display()
321 px = &screen_buffer[idx]; in vidc_text_printchar()
352 screen_buffer[idx].c = c; in vidc_text_putchar()
353 screen_buffer[idx].a = *a; in vidc_text_putchar()
407 &screen_buffer[d.tp_col + drow], in vidc_text_copy()
408 &screen_buffer[s.tp_col + srow])) { in vidc_text_copy()
409 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
410 screen_buffer[s.tp_col + srow]; in vidc_text_copy()
429 &screen_buffer[d.tp_col + drow], in vidc_text_copy()
[all …]
/freebsd/stand/efi/libefi/
H A Defi_console.c149 if (screen_buffer == NULL) in term_image_display()
159 screen_buffer[idx].a.ta_format |= TF_IMAGE; in term_image_display()
199 px = screen_buffer + p->tp_col + p->tp_row * state->tg_tp.tp_col; in efi_text_printchar()
246 screen_buffer[idx].c = c; in efi_text_putchar()
247 screen_buffer[idx].a = *a; in efi_text_putchar()
289 if (!is_same_pixel(&screen_buffer[soffset + x], in efi_text_copy_line()
290 &screen_buffer[doffset + x])) { in efi_text_copy_line()
291 screen_buffer[doffset + x] = in efi_text_copy_line()
292 screen_buffer[soffset + x]; in efi_text_copy_line()
1036 free(screen_buffer); in cons_update_mode()
[all...]
/freebsd/stand/common/
H A Dgfx_fb.c164 struct text_pixel *screen_buffer; variable
971 screen_buffer[idx].c = c; in gfx_fb_putchar()
972 screen_buffer[idx].a = *a; in gfx_fb_putchar()
1005 row = &screen_buffer[p.tp_row * state->tg_tp.tp_col]; in gfx_fb_fill()
1039 glyph = font_lookup(&state->tg_font, screen_buffer[idx].c, in gfx_fb_cursor_draw()
1040 &screen_buffer[idx].a); in gfx_fb_cursor_draw()
1041 gfx_bitblt_bitmap(state, glyph, &screen_buffer[idx].a, 0xff, on); in gfx_fb_cursor_draw()
1186 if (is_same_pixel(&screen_buffer[soffset + x], in gfx_fb_copy_line()
1187 &screen_buffer[doffset + x])) { in gfx_fb_copy_line()
1193 screen_buffer[doffset + x] = screen_buffer[soffset + x]; in gfx_fb_copy_line()
H A Dgfx_fb.h261 extern struct text_pixel *screen_buffer;