Home
last modified time | relevance | path

Searched refs:vtb_size (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/syscons/
H A Dscvtb.c46 (((at) + (offset) + (vtb)->vtb_size)%(vtb)->vtb_size)
55 vtb->vtb_size = cols*rows; in sc_vtb_init()
93 vtb->vtb_size = 0; in sc_vtb_destroy()
163 return ((pos + offset + vtb->vtb_size)%vtb->vtb_size); in sc_vtb_pos()
170 fillw_io(attr | c, sc_vtb_pointer(vtb, 0), vtb->vtb_size); in sc_vtb_clear()
172 fillw(attr | c, (void *)sc_vtb_pointer(vtb, 0), vtb->vtb_size); in sc_vtb_clear()
202 len = imin(count, vtb2->vtb_size - vtb2->vtb_tail); in sc_vtb_append()
220 vtb->vtb_tail = pos%vtb->vtb_size; in sc_vtb_seek()
226 if (at + count > vtb->vtb_size) in sc_vtb_erase()
227 count = vtb->vtb_size - at; in sc_vtb_erase()
[all …]
H A Dsyscons.h157 int vtb_size; member