Lines Matching refs:sc_vtb_pointer

68 				bzero((void *)sc_vtb_pointer(vtb, 0),  in sc_vtb_init()
121 return (readw(sc_vtb_pointer(vtb, at)) & 0x00ff); in sc_vtb_getc()
123 return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0x00ff); in sc_vtb_getc()
130 return (readw(sc_vtb_pointer(vtb, at)) & 0xff00); in sc_vtb_geta()
132 return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0xff00); in sc_vtb_geta()
139 writew(sc_vtb_pointer(vtb, at), a | c); in sc_vtb_putc()
141 *(u_int16_t *)sc_vtb_pointer(vtb, at) = a | c; in sc_vtb_putc()
155 sc_vtb_pointer(sc_vtb_t *vtb, int at) in sc_vtb_pointer() function
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()
180 bcopy_toio(sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
181 sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
184 bcopy_fromio(sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
185 sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
188 bcopy((void *)sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
189 (void *)sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
204 bcopy_fromio(sc_vtb_pointer(vtb1, from), in sc_vtb_append()
205 sc_vtb_pointer(vtb2, vtb2->vtb_tail), in sc_vtb_append()
208 bcopy((void *)sc_vtb_pointer(vtb1, from), in sc_vtb_append()
209 (void *)sc_vtb_pointer(vtb2, vtb2->vtb_tail), in sc_vtb_append()
229 fillw_io(attr | c, sc_vtb_pointer(vtb, at), count); in sc_vtb_erase()
231 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count); in sc_vtb_erase()
244 bcopy_io(sc_vtb_pointer(vtb, from), in sc_vtb_move()
245 sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t)); in sc_vtb_move()
247 bcopy((void *)sc_vtb_pointer(vtb, from), in sc_vtb_move()
248 (void *)sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t)); in sc_vtb_move()
261 bcopy_io(sc_vtb_pointer(vtb, at + count), in sc_vtb_delete()
262 sc_vtb_pointer(vtb, at), in sc_vtb_delete()
265 bcopy((void *)sc_vtb_pointer(vtb, at + count), in sc_vtb_delete()
266 (void *)sc_vtb_pointer(vtb, at), in sc_vtb_delete()
270 fillw_io(attr | c, sc_vtb_pointer(vtb, at + len), in sc_vtb_delete()
273 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at + len), in sc_vtb_delete()
284 bcopy_io(sc_vtb_pointer(vtb, at), in sc_vtb_ins()
285 sc_vtb_pointer(vtb, at + count), in sc_vtb_ins()
288 bcopy((void *)sc_vtb_pointer(vtb, at), in sc_vtb_ins()
289 (void *)sc_vtb_pointer(vtb, at + count), in sc_vtb_ins()
293 fillw_io(attr | c, sc_vtb_pointer(vtb, at), count); in sc_vtb_ins()
295 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count); in sc_vtb_ins()