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()
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()
409 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
431 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
451 screen_buffer[d.tp_col + drow] = in vidc_text_copy()
931 free(screen_buffer); in cons_update_mode()
933 sizeof(*screen_buffer)); in cons_update_mode()
934 if (screen_buffer == NULL) in cons_update_mode()
[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()
246 screen_buffer[idx].c = c; in efi_text_putchar()
247 screen_buffer[idx].a = *a; in efi_text_putchar()
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()
1037 screen_buffer = malloc(rows * cols * sizeof(*screen_buffer)); in cons_update_mode()
1038 if (screen_buffer != NULL) { in cons_update_mode()
[all …]
/freebsd/stand/common/
H A Dgfx_fb.c162 struct text_pixel *screen_buffer; variable
969 screen_buffer[idx].c = c; in gfx_fb_putchar()
970 screen_buffer[idx].a = *a; in gfx_fb_putchar()
1003 row = &screen_buffer[p.tp_row * state->tg_tp.tp_col]; in gfx_fb_fill()
1037 glyph = font_lookup(&state->tg_font, screen_buffer[idx].c, in gfx_fb_cursor_draw()
1038 &screen_buffer[idx].a); in gfx_fb_cursor_draw()
1039 gfx_bitblt_bitmap(state, glyph, &screen_buffer[idx].a, 0xff, on); in gfx_fb_cursor_draw()
1184 if (is_same_pixel(&screen_buffer[soffset + x], in gfx_fb_copy_line()
1185 &screen_buffer[doffset + x])) { in gfx_fb_copy_line()
1191 screen_buffer[doffset + x] = screen_buffer[soffset + x]; in gfx_fb_copy_line()
H A Dgfx_fb.h261 extern struct text_pixel *screen_buffer;