Home | History | Annotate | Download | only in dev

Lines Matching refs:sx

69 void et_clear(struct ite_softc *ip, int sy, int sx, int h, int w);
70 void et_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir);
179 et_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
192 dst = (volatile unsigned char*)ip->grf->g_fbkva + (sy * ip->cols) + sx;
204 et_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
225 etbcopy(fb+sx, fb+sx+count, ip->cols - (sx + count));
228 etbcopy(fb+sx, fb+sx-count, ip->cols - sx);
244 etbcopy(fb+sx, fb+sx+count, ip->cols - (sx + count));
247 etbcopy(fb+sx, fb+sx-count, ip->cols - sx);