Lines Matching refs:off

737  * Turn cursor off/on.
747 /* Turn old cursor off */
953 * Actually turn the cursor on or off. This does the dirty work for
1478 int off = row * scr->rs_ri->ri_cols + col +
1481 ri->ri_putchar(ri, row, col, scr->rs_bs[off].uc,
1482 scr->rs_bs[off].attr);
1531 int off = row * scr->rs_ri->ri_cols + col + scr->rs_dispoffset;
1536 scr->rs_bs[off].uc = uc;
1537 scr->rs_bs[off].attr = attr;
1564 int off = row * cols + col + scr->rs_dispoffset;
1567 scr->rs_bs[off].uc, scr->rs_bs[off].attr);
1583 int off = row * cols + col + i + scr->rs_dispoffset;
1585 scr->rs_bs[off].uc = ' ';
1586 scr->rs_bs[off].attr = attr;
1629 int off = row * cols + col + scr->rs_dispoffset;
1630 int newc = scr->rs_bs[off+srcofs].uc;
1631 int newa = scr->rs_bs[off+srcofs].attr;
1633 if (scr->rs_bs[off].uc == newc &&
1634 scr->rs_bs[off].attr == newa)
1636 scr->rs_bs[off].uc = newc;
1637 scr->rs_bs[off].attr = newa;
1655 int off = row * cols + i + scr->rs_dispoffset;
1657 scr->rs_bs[off].uc = ' ';
1658 scr->rs_bs[off].attr = attr;
1688 int off = row * ri->ri_cols + col;
1690 ri->ri_bs[off].uc = uc;
1691 ri->ri_bs[off].attr = attr;
1707 int off = row * cols + col;
1710 ri->ri_bs[off].uc, ri->ri_bs[off].attr);
1726 int off = row * cols + col + i;
1728 ri->ri_bs[off].uc = ' ';
1729 ri->ri_bs[off].attr = attr;
1747 int off = row * cols + col;
1750 ri->ri_bs[off].uc, ri->ri_bs[off].attr);
1767 int off = row * cols + i;
1769 ri->ri_bs[off].uc = ' ';
1770 ri->ri_bs[off].attr = attr;
1779 int off = ri->ri_crow * ri->ri_cols + ri->ri_ccol;
1784 uc = ri->ri_bs[off].uc;
1785 attr = ri->ri_bs[off].attr;
1936 int off = scr->rs_visibleoffset + (lines * ri->ri_cols);
1938 if (off < 0)
1939 off = 0;
1940 else if (off > scr->rs_dispoffset)
1941 off = scr->rs_dispoffset;
1943 scr->rs_visibleoffset = off;
1953 int off = row * scr->rs_ri->ri_cols + col +
1956 ri->ri_putchar(ri, row, col, scr->rs_bs[off].uc,
1957 scr->rs_bs[off].attr);