Searched refs:newcol (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/nvi/ex/
H A Dex_shift.c70 size_t blen, len, newcol, newidx, oldcol, oldidx, sw; local
126 newcol = oldcol;
128 newcol = oldcol + sw;
130 newcol = oldcol < sw ? 0 : oldcol - sw;
131 if (newcol == oldcol) {
139 ADD_SPACE_RETW(sp, bp, blen, newcol + len);
148 for (; newcol >= O_VAL(sp, O_TABSTOP); ++newidx) {
150 newcol -= O_VAL(sp, O_TABSTOP);
153 for (; newcol > 0; --newcol,
[all...]
/freebsd-current/usr.bin/top/
H A Ddisplay.c1182 int newcol = start + 1; local
1233 diff = newcol - lastcol;
1245 Move_to(newcol, line);
1249 lastcol = newcol + 1;
1273 newcol++;
1279 diff = screen_width - newcol;
/freebsd-current/usr.bin/diff/
H A Ddiffreg.c1247 int i, j, c, lastc, col, nc, newcol; local
1328 newcol = roundup(col + 1, tabsize);
1330 if (hw > 0 && newcol >= hw)
1334 if (hw > 0 && newcol > hw)
1335 newcol = hw;
1336 printf("%*s", newcol - col, "");
1338 col = newcol;
1720 int col, newcol, tabstop; local
1723 newcol = nc + n;
1726 while ((tabstop = roundup(col + 1, tabsize)) <= newcol) {
[all...]

Completed in 143 milliseconds