Lines Matching defs:newcol
1250 int i, j, c, lastc, col, nc, newcol;
1331 newcol = roundup(col + 1, tabsize);
1333 if (hw > 0 && newcol >= hw)
1337 if (hw > 0 && newcol > hw)
1338 newcol = hw;
1339 printf("%*s", newcol - col, "");
1341 col = newcol;
1723 int col, newcol, tabstop;
1726 newcol = nc + n;
1729 while ((tabstop = roundup(col + 1, tabsize)) <= newcol) {
1735 printf("%*s", newcol - col, "");