Lines Matching refs:sc_vtb_pointer

70 				bzero((void *)sc_vtb_pointer(vtb, 0),  in sc_vtb_init()
123 return (readw(sc_vtb_pointer(vtb, at)) & 0x00ff); in sc_vtb_getc()
125 return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0x00ff); in sc_vtb_getc()
132 return (readw(sc_vtb_pointer(vtb, at)) & 0xff00); in sc_vtb_geta()
134 return (*(u_int16_t *)sc_vtb_pointer(vtb, at) & 0xff00); in sc_vtb_geta()
141 writew(sc_vtb_pointer(vtb, at), a | c); in sc_vtb_putc()
143 *(u_int16_t *)sc_vtb_pointer(vtb, at) = a | c; in sc_vtb_putc()
157 sc_vtb_pointer(sc_vtb_t *vtb, int at) in sc_vtb_pointer() function
172 fillw_io(attr | c, sc_vtb_pointer(vtb, 0), vtb->vtb_size); in sc_vtb_clear()
174 fillw(attr | c, (void *)sc_vtb_pointer(vtb, 0), vtb->vtb_size); in sc_vtb_clear()
182 bcopy_toio(sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
183 sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
186 bcopy_fromio(sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
187 sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
190 bcopy((void *)sc_vtb_pointer(vtb1, from), in sc_vtb_copy()
191 (void *)sc_vtb_pointer(vtb2, to), in sc_vtb_copy()
206 bcopy_fromio(sc_vtb_pointer(vtb1, from), in sc_vtb_append()
207 sc_vtb_pointer(vtb2, vtb2->vtb_tail), in sc_vtb_append()
210 bcopy((void *)sc_vtb_pointer(vtb1, from), in sc_vtb_append()
211 (void *)sc_vtb_pointer(vtb2, vtb2->vtb_tail), in sc_vtb_append()
231 fillw_io(attr | c, sc_vtb_pointer(vtb, at), count); in sc_vtb_erase()
233 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count); in sc_vtb_erase()
246 bcopy_io(sc_vtb_pointer(vtb, from), in sc_vtb_move()
247 sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t)); in sc_vtb_move()
249 bcopy((void *)sc_vtb_pointer(vtb, from), in sc_vtb_move()
250 (void *)sc_vtb_pointer(vtb, to), count*sizeof(u_int16_t)); in sc_vtb_move()
263 bcopy_io(sc_vtb_pointer(vtb, at + count), in sc_vtb_delete()
264 sc_vtb_pointer(vtb, at), in sc_vtb_delete()
267 bcopy((void *)sc_vtb_pointer(vtb, at + count), in sc_vtb_delete()
268 (void *)sc_vtb_pointer(vtb, at), in sc_vtb_delete()
272 fillw_io(attr | c, sc_vtb_pointer(vtb, at + len), in sc_vtb_delete()
275 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at + len), in sc_vtb_delete()
286 bcopy_io(sc_vtb_pointer(vtb, at), in sc_vtb_ins()
287 sc_vtb_pointer(vtb, at + count), in sc_vtb_ins()
290 bcopy((void *)sc_vtb_pointer(vtb, at), in sc_vtb_ins()
291 (void *)sc_vtb_pointer(vtb, at + count), in sc_vtb_ins()
295 fillw_io(attr | c, sc_vtb_pointer(vtb, at), count); in sc_vtb_ins()
297 fillw(attr | c, (void *)sc_vtb_pointer(vtb, at), count); in sc_vtb_ins()