Lines Matching refs:org

279 	u16 *org;  in vcs_read_buf_noattr()  local
282 org = screen_pos(vc, pos, viewed); in vcs_read_buf_noattr()
287 *con_buf++ = (vcs_scr_readw(vc, org++) & 0xff); in vcs_read_buf_noattr()
289 org = screen_pos(vc, pos, viewed); in vcs_read_buf_noattr()
300 u16 *org, *con_buf16; in vcs_read_buf() local
341 org = screen_pos(vc, pos, viewed); in vcs_read_buf()
352 *con_buf16++ = vcs_scr_readw(vc, org++); in vcs_read_buf()
355 org = screen_pos(vc, pos, viewed); in vcs_read_buf()
481 u16 *org; in vcs_write_buf_noattr() local
484 *org0 = org = screen_pos(vc, pos, viewed); in vcs_write_buf_noattr()
493 (vcs_scr_readw(vc, org) & 0xff00) | c, org); in vcs_write_buf_noattr()
494 org++; in vcs_write_buf_noattr()
496 org = screen_pos(vc, pos, viewed); in vcs_write_buf_noattr()
502 return org; in vcs_write_buf_noattr()
521 u16 *org; in vcs_write_buf() local
544 *org0 = org = screen_pos(vc, pos/2, viewed); in vcs_write_buf()
550 vcs_scr_writew(vc, vc_compile_le16(c, vcs_scr_readw(vc, org)), in vcs_write_buf()
551 org); in vcs_write_buf()
552 org++; in vcs_write_buf()
555 org = screen_pos(vc, pos/2, viewed); in vcs_write_buf()
568 vcs_scr_writew(vc, w, org++); in vcs_write_buf()
572 org = screen_pos(vc, pos, viewed); in vcs_write_buf()
579 return org; in vcs_write_buf()
583 vcs_scr_writew(vc, vc_compile_le16(vcs_scr_readw(vc, org) >> 8, c), in vcs_write_buf()
584 org); in vcs_write_buf()
586 return org; in vcs_write_buf()
595 u16 *org0, *org; in vcs_write() local
680 org = vcs_write_buf(vc, con_buf, pos, this_round, in vcs_write()
683 org = vcs_write_buf_noattr(vc, con_buf, pos, this_round, in vcs_write()
690 if (org) in vcs_write()
691 update_region(vc, (unsigned long)(org0), org - org0); in vcs_write()