Home | History | Annotate | Download | only in ic

Lines Matching defs:ncols

66 		off = (scr->cursorrow * scr->type->ncols + scr->cursorcol) * 2
100 off = scr->cursorrow * scr->type->ncols + scr->cursorcol;
114 off = (scr->cursorrow * scr->type->ncols + scr->cursorcol);
136 + row * scr->type->ncols + col;
163 off = row * scr->type->ncols + col;
166 if (__predict_false(off >= (scr->type->ncols * scr->type->nrows)))
179 pcdisplay_copycols(void *id, int row, int srccol, int dstcol, int ncols)
186 srcoff = dstoff = row * scr->type->ncols;
194 ncols);
196 memcpy(&scr->mem[dstoff], &scr->mem[srcoff], ncols * 2);
200 pcdisplay_erasecols(void *id, int row, int startcol, int ncols, long fillattr)
209 off = row * scr->type->ncols + startcol;
215 val, ncols);
217 for (i = 0; i < ncols; i++)
227 int ncols = scr->type->ncols;
230 srcoff = srcrow * ncols + 0;
231 dstoff = dstrow * ncols + 0;
237 nrows * ncols);
240 nrows * ncols * 2);
253 off = startrow * scr->type->ncols;
254 count = nrows * scr->type->ncols;
277 for (off = 0; off < scr->type->nrows * scr->type->ncols;
288 for (off = 0; off < scr->type->nrows * scr->type->ncols;
307 off = wschar->row * scr->type->ncols + wschar->col;
308 if (off >= scr->type->ncols * scr->type->nrows)
337 off = wschar->row * scr->type->ncols + wschar->col;
338 if (off >= (scr->type->ncols * scr->type->nrows))