sc_vtb_pointer
vidd_puts(adp, from, (uint16_t*)sc_vtb_pointer(&scp->vtb, from), count);
vidd_puts(adp, from, (uint16_t*)sc_vtb_pointer(&scp->vtb, from), count);
(u_int16_t *)sc_vtb_pointer(&scp->vtb, from), count);
(u_int16_t *)sc_vtb_pointer(&scp->vtb, from),
p = sc_vtb_pointer(&scp->vtb, cursor);
p = sc_vtb_pointer(&scp->vtb, scp->cursor_pos);
for (p = sc_vtb_pointer(&scp->scr, from); count-- > 0; ++from) {
return (readw(sc_vtb_pointer(vtb, at)) & 0x00ff);
return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0x00ff);
return (readw(sc_vtb_pointer(vtb, at)) & 0xff00);
return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0xff00);
writew(sc_vtb_pointer(vtb, at), a | c);
*(u_int16_t *)sc_vtb_pointer(vtb, at) = a | c;
fillw_io(attr | c, sc_vtb_pointer(vtb, 0), vtb->vtb_size);
fillw(attr | c, (void *)sc_vtb_pointer(vtb, 0), vtb->vtb_size);
bcopy_toio(sc_vtb_pointer(vtb1, from),
sc_vtb_pointer(vtb2, to),
bcopy_fromio(sc_vtb_pointer(vtb1, from),
sc_vtb_pointer(vtb2, to),
bcopy((void *)sc_vtb_pointer(vtb1, from),
(void *)sc_vtb_pointer(vtb2, to),
bcopy_fromio(sc_vtb_pointer(vtb1, from),
sc_vtb_pointer(vtb2, vtb2->vtb_tail),
bcopy((void *)sc_vtb_pointer(vtb1, from),
(void *)sc_vtb_pointer(vtb2, vtb2->vtb_tail),
fillw_io(attr | c, sc_vtb_pointer(vtb, at), count);
fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count);
bcopy_io(sc_vtb_pointer(vtb, from),
sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t));
bcopy((void *)sc_vtb_pointer(vtb, from),
(void *)sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t));
bcopy_io(sc_vtb_pointer(vtb, at + count),
sc_vtb_pointer(vtb, at),
bcopy((void *)sc_vtb_pointer(vtb, at + count),
(void *)sc_vtb_pointer(vtb, at),
fillw_io(attr | c, sc_vtb_pointer(vtb, at + len),
fillw(attr | c, (void *)sc_vtb_pointer(vtb, at + len),
bcopy_io(sc_vtb_pointer(vtb, at),
sc_vtb_pointer(vtb, at + count),
bcopy((void *)sc_vtb_pointer(vtb, at),
(void *)sc_vtb_pointer(vtb, at + count),
fillw_io(attr | c, sc_vtb_pointer(vtb, at), count);
fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count);
bzero((void *)sc_vtb_pointer(vtb, 0),
vm_offset_t sc_vtb_pointer(sc_vtb_t *vtb, int at);