Lines Matching refs:WCOLS

59 	vclrbyte(vtube0, WCOLS * (WECHO - ZERO + 1));
103 if (destcol == WCOLS)
105 destline += destcol / WCOLS;
106 destcol %= WCOLS;
109 i = WCOLS - destcol;
123 destcol = WCOLS - i;
201 vclrbyte(vtube[WECHO], WCOLS);
352 vigoto(WECHO, WCOLS-20);
400 if (x >= WCOLS) {
401 y += x / WCOLS;
402 x %= WCOLS;
407 if (outcol >= WCOLS) {
409 outline += outcol / WCOLS;
410 outcol %= WCOLS;
412 outcol = WCOLS - 1;
468 if ((destline - outline) * WCOLS != destcol - outcol) {
582 cp += WCOLS;
596 copy(temp, vtube[i], WCOLS * sizeof(wchar_t));
597 copy(vtube[i], vtube[p], WCOLS * sizeof(wchar_t));
598 copy(vtube[p], temp, WCOLS * sizeof(wchar_t));
632 if (DEPTH(vcline) * WCOLS + !value(vi_REDRAW) >
633 (destline - LINE(vcline)) * WCOLS + destcol)
671 i = WCOLS * DEPTH(vcline);
673 i = WCOLS;
685 inscol = destcol + (destline - LINE(vcline)) * WCOLS;
830 int rmdr = d * WCOLS - linend;
923 for (j = DEPTH(vcline) - 1; j > (tabend + shft) / WCOLS; j--) {
924 vgotoCL(j * WCOLS);
926 up = tp + j * WCOLS - shft;
1072 for (j = (inscol + inssiz - 1) / WCOLS + 1;
1073 j <= (tabstart + inssiz - doomed - 1) / WCOLS; j++) {
1074 vgotoCL(j * WCOLS);
1076 up = tp + j * WCOLS - i;
1230 if (destcol >= WCOLS-1 && splitw && destline == WECHO)
1232 if (destcol >= WCOLS) {
1233 destline += destcol / WCOLS;
1234 destcol %= WCOLS;
1240 if(destcol + length - 1 >= WCOLS) {
1251 for (length = WCOLS - destcol; length; length--)
1423 if (eat_newline_glitch && outcol % WCOLS == 0) {
1477 i = stcol / WCOLS;
1478 if (i != endcol / WCOLS)
1481 stcol %= WCOLS;
1482 endcol %= WCOLS;
1483 up = vtube[i]; tp = up + endcol; tpe = up + WCOLS;
1518 copy(up + stcol, up + endcol, (WCOLS - endcol) * sizeof(wchar_t));