Lines Matching defs:vscn
986 struct hpcfb_tvrow *vscn = dc->dc_tvram;
987 struct hpcfb_vchar *vc = &vscn[row].col[col];
990 if (vscn == 0)
1001 if (vscn[row].maxcol +1 == col)
1002 vscn[row].maxcol = col;
1003 else if (vscn[row].maxcol < col) {
1004 vcb = &vscn[row].col[vscn[row].maxcol+1];
1006 sizeof(struct hpcfb_vchar)*(col-vscn[row].maxcol-1));
1007 vscn[row].maxcol = col;
1069 struct hpcfb_tvrow *vscn = dc->dc_tvram;
1070 struct hpcfb_vchar *svc = &vscn[row].col[srccol];
1071 struct hpcfb_vchar *dvc = &vscn[row].col[dstcol];
1073 if (vscn == 0)
1085 if (vscn[row].maxcol < srccol+ncols-1)
1086 vscn[row].maxcol = srccol+ncols-1;
1087 if (vscn[row].maxcol < dstcol+ncols-1)
1088 vscn[row].maxcol = dstcol+ncols-1;
1146 struct hpcfb_tvrow *vscn = dc->dc_tvram;
1148 if (vscn == 0)
1159 vscn[row].maxcol = startcol-1;
1160 if (vscn[row].spacecol < startcol+ncols-1)
1161 vscn[row].spacecol = startcol+ncols-1;
1214 struct hpcfb_tvrow *vscn = dc->dc_tvram;
1215 struct hpcfb_tvrow *svc = &vscn[src];
1216 struct hpcfb_tvrow *dvc = &vscn[dst];
1220 if (vscn == 0)
1265 struct hpcfb_tvrow *vscn = dc->dc_tvram;
1282 if (vscn == 0)
1299 cols = vscn[row+i].maxcol;
1305 svc = &vscn[row+i].col[j];
1311 cols = vscn[row+i].spacecol;
1319 vscn[row+i].spacecol = 0;
1466 struct hpcfb_tvrow *vscn = dc->dc_tvram;
1470 if (vscn == 0)
1483 cols = vscn[row+i].maxcol;
1484 if (vscn[row+i].spacecol < cols)
1485 vscn[row+i].spacecol = cols;
1486 vscn[row+i].maxcol = -1;