Lines Matching refs:v
163 unsigned char *v = (unsigned char *)(uintptr_t)(FB + active_page*(2*VPAGE_SIZE)); in _scroll() local
167 w = *((unsigned short *) (v + 2*(y*80+x))); in _scroll()
168 *((unsigned short *)(v + 2*((y-1)*80+x))) = w; in _scroll()
173 *((unsigned short *)(v + 2*((y-1)*80+x))) = xattr; in _scroll()
184 unsigned char *v = (unsigned char *)(uintptr_t)(FB + active_page*(2*VPAGE_SIZE)); in cputc() local
223 *(v + 2*(x + y*80)) = ' '; in cputc()
227 *(v + 2*(x + y*80)) = c; in cputc()
252 unsigned char *v = (unsigned char *)(uintptr_t)(FB + (80*y+x)*2 + active_page*(2*VPAGE_SIZE)); in puts_xy() local
254 *v = *s; in puts_xy()
256 v++; in puts_xy()
257 *v = attr; in puts_xy()
258 v++; in puts_xy()
263 unsigned char *v = (unsigned char *)(uintptr_t)(FB + (80*y+x)*2 + active_page*(2*VPAGE_SIZE)); in putc_xy() local
264 *v = c; in putc_xy()
265 v++; in putc_xy()
266 *v = attr; in putc_xy()