Lines Matching refs:sc_vtb_pointer
70 bzero((void *)sc_vtb_pointer(vtb, 0), in sc_vtb_init()
126 return (readw(sc_vtb_pointer(vtb, at)) & 0x00ff); in sc_vtb_getc()
129 return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0x00ff); in sc_vtb_getc()
137 return (readw(sc_vtb_pointer(vtb, at)) & 0xff00); in sc_vtb_geta()
140 return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0xff00); in sc_vtb_geta()
148 writew(sc_vtb_pointer(vtb, at), a | c); in sc_vtb_putc()
151 *(u_int16_t *)sc_vtb_pointer(vtb, at) = a | c; in sc_vtb_putc()
167 sc_vtb_pointer(sc_vtb_t *vtb, int at) in sc_vtb_pointer() function
183 fillw_io(attr | c, sc_vtb_pointer(vtb, 0), vtb->vtb_size); in sc_vtb_clear()
186 fillw(attr | c, (void *)sc_vtb_pointer(vtb, 0), vtb->vtb_size); in sc_vtb_clear()
195 bcopy_toio(sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
196 sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
199 bcopy_fromio(sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
200 sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
204 bcopy((void *)sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
205 (void *)sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
221 bcopy_fromio(sc_vtb_pointer(vtb1, from), in sc_vtb_append()
222 sc_vtb_pointer(vtb2, vtb2->vtb_tail), in sc_vtb_append()
226 bcopy((void *)sc_vtb_pointer(vtb1, from), in sc_vtb_append()
227 (void *)sc_vtb_pointer(vtb2, vtb2->vtb_tail), in sc_vtb_append()
248 fillw_io(attr | c, sc_vtb_pointer(vtb, at), count); in sc_vtb_erase()
251 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count); in sc_vtb_erase()
265 bcopy_io(sc_vtb_pointer(vtb, from), in sc_vtb_move()
266 sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t)); in sc_vtb_move()
269 bcopy((void *)sc_vtb_pointer(vtb, from), in sc_vtb_move()
270 (void *)sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t)); in sc_vtb_move()
284 bcopy_io(sc_vtb_pointer(vtb, at + count), in sc_vtb_delete()
285 sc_vtb_pointer(vtb, at), in sc_vtb_delete()
289 bcopy((void *)sc_vtb_pointer(vtb, at + count), in sc_vtb_delete()
290 (void *)sc_vtb_pointer(vtb, at), in sc_vtb_delete()
295 fillw_io(attr | c, sc_vtb_pointer(vtb, at + len), in sc_vtb_delete()
299 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at + len), in sc_vtb_delete()
311 bcopy_io(sc_vtb_pointer(vtb, at), in sc_vtb_ins()
312 sc_vtb_pointer(vtb, at + count), in sc_vtb_ins()
316 bcopy((void *)sc_vtb_pointer(vtb, at), in sc_vtb_ins()
317 (void *)sc_vtb_pointer(vtb, at + count), in sc_vtb_ins()
322 fillw_io(attr | c, sc_vtb_pointer(vtb, at), count); in sc_vtb_ins()
325 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count); in sc_vtb_ins()