Home
last modified time | relevance | path

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

/freebsd-13.1/stand/i386/libi386/
H A Dvidconsole.c112 if (screen_buffer == NULL) in term_image_display()
325 px = &screen_buffer[idx]; in vidc_text_printchar()
356 screen_buffer[idx].c = c; in vidc_text_putchar()
357 screen_buffer[idx].a = *a; in vidc_text_putchar()
413 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
435 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
455 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
925 free(screen_buffer); in cons_update_mode()
927 sizeof(*screen_buffer)); in cons_update_mode()
928 if (screen_buffer == NULL) in cons_update_mode()
[all …]
/freebsd-13.1/stand/efi/libefi/
H A Defi_console.c151 if (screen_buffer == NULL) in term_image_display()
161 screen_buffer[idx].a.ta_format |= TF_IMAGE; in term_image_display()
248 screen_buffer[idx].c = c; in efi_text_putchar()
249 screen_buffer[idx].a = *a; in efi_text_putchar()
292 &screen_buffer[doffset + x])) { in efi_text_copy_line()
293 screen_buffer[doffset + x] = in efi_text_copy_line()
294 screen_buffer[soffset + x]; in efi_text_copy_line()
1030 free(screen_buffer); in cons_update_mode()
1031 screen_buffer = malloc(rows * cols * sizeof(*screen_buffer)); in cons_update_mode()
1032 if (screen_buffer != NULL) { in cons_update_mode()
[all …]
/freebsd-13.1/stand/common/
H A Dgfx_fb.c162 struct text_pixel *screen_buffer; variable
966 screen_buffer[idx].c = c; in gfx_fb_putchar()
967 screen_buffer[idx].a = *a; in gfx_fb_putchar()
1000 row = &screen_buffer[p.tp_row * state->tg_tp.tp_col]; in gfx_fb_fill()
1034 glyph = font_lookup(&state->tg_font, screen_buffer[idx].c, in gfx_fb_cursor_draw()
1035 &screen_buffer[idx].a); in gfx_fb_cursor_draw()
1036 gfx_bitblt_bitmap(state, glyph, &screen_buffer[idx].a, 0xff, on); in gfx_fb_cursor_draw()
1181 if (is_same_pixel(&screen_buffer[soffset + x], in gfx_fb_copy_line()
1182 &screen_buffer[doffset + x])) { in gfx_fb_copy_line()
1188 screen_buffer[doffset + x] = screen_buffer[soffset + x]; in gfx_fb_copy_line()
H A Dgfx_fb.h264 extern struct text_pixel *screen_buffer;