Home | History | Annotate | Download | only in dev

Lines Matching refs:sx

392 void ulowell_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
400 printf("ulowell_clear %d %d %d %d ->",sy,sx,h,w);
406 cmd[2] = sx * ip->ftwidth;
415 void ulowell_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
423 printf("ulowell_scroll %d %d %d %d ->",sy,sx,count,dir);
434 cmd[1] = sx * ip->ftwidth;
436 cmd[3] = (ip->cols - sx - count) * ip->ftwidth;
438 cmd[5] = (sx + count) * ip->ftwidth;
441 ulowell_clear (ip, sy, sx, 1, count);
444 cmd[1] = sx * ip->ftwidth;
446 cmd[3] = (ip->cols - sx) * ip->ftwidth;
448 cmd[5] = (sx - count) * ip->ftwidth;