Home
last modified time | relevance | path

Searched refs:vtb_buffer (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/dev/misc/syscons/
HDscvtb.c86 vtb->vtb_buffer = NULL; in sc_vtb_init()
93 vtb->vtb_buffer = kmalloc(cols*rows*sizeof(uint16_t), in sc_vtb_init()
96 if (vtb->vtb_buffer != NULL) { in sc_vtb_init()
101 vtb->vtb_buffer = buf; in sc_vtb_init()
106 vtb->vtb_buffer = buf; in sc_vtb_init()
124 p = vtb->vtb_buffer; in sc_vtb_destroy()
125 vtb->vtb_buffer = NULL; in sc_vtb_destroy()
149 return (readw(vtb->vtb_buffer + at) & 0x00ff); in sc_vtb_getc()
151 return (*(vtb->vtb_buffer + at) & 0x00ff); in sc_vtb_getc()
158 return (readw(vtb->vtb_buffer + at) & 0xff00); in sc_vtb_geta()
[all …]
HDsctermvar.h324 p = scp->vtb.vtb_buffer + scp->cursor_pos; in sc_term_gen_print()
HDsyscons.h162 uint16_t *vtb_buffer; member
HDscvgarndr.c181 for (p = scp->scr.vtb_buffer + from; count-- > 0; ++from) { in vga_txtdraw()
HDsyscons.c1198 copyout ((void*)scp->vtb.vtb_buffer, ptr->buf, in scioctl()