Searched refs:newcol (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/nvi/ex/ |
H A D | ex_shift.c | 70 size_t blen, len, newcol, newidx, oldcol, oldidx, sw; in shift() local 126 newcol = oldcol; in shift() 128 newcol = oldcol + sw; in shift() 130 newcol = oldcol < sw ? 0 : oldcol - sw; in shift() 131 if (newcol == oldcol) { in shift() 139 ADD_SPACE_RETW(sp, bp, blen, newcol + len); in shift() 148 for (; newcol >= O_VAL(sp, O_TABSTOP); ++newidx) { in shift() 150 newcol -= O_VAL(sp, O_TABSTOP); in shift() 153 for (; newcol > 0; --newcol, ++newidx) in shift()
|
/freebsd/usr.bin/top/ |
H A D | display.c | 1182 int newcol = start + 1; in line_update() local 1233 diff = newcol - lastcol; in line_update() 1245 Move_to(newcol, line); in line_update() 1249 lastcol = newcol + 1; in line_update() 1273 newcol++; in line_update() 1279 diff = screen_width - newcol; in line_update()
|
/freebsd/usr.bin/diff/ |
H A D | diffreg.c | 1250 int i, j, c, lastc, col, nc, newcol; in fetch() 1331 newcol = roundup(col + 1, tabsize); in fetch() 1333 if (hw > 0 && newcol >= hw) in fetch() 1337 if (hw > 0 && newcol > hw) in fetch() 1338 newcol = hw; in fetch() 1339 printf("%*s", newcol - col, ""); in fetch() 1341 col = newcol; in fetch() 1723 int col, newcol, tabstop; in print_space() 1726 newcol = nc + n; in print_space() 1729 while ((tabstop = roundup(col + 1, tabsize)) <= newcol) { in print_space() 1246 int i, j, c, lastc, col, nc, newcol; fetch() local 1719 int col, newcol, tabstop; print_space() local [all...] |