HomeSort by: relevance | last modified time | path
    Searched defs:newcol (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/nvi/dist/ex/
ex_shift.c 67 size_t blen, len, newcol, newidx, oldcol, oldidx, sw; local
123 newcol = oldcol + sw;
125 newcol = oldcol < sw ? 0 : oldcol - sw;
126 if (newcol == oldcol) {
134 ADD_SPACE_RETW(sp, bp, blen, newcol + len);
143 for (; newcol >= O_VAL(sp, O_TABSTOP); ++newidx) {
145 newcol -= O_VAL(sp, O_TABSTOP);
148 for (; newcol > 0; --newcol, ++newidx)
  /src/external/bsd/tradcpp/dist/
place.c 199 unsigned newcol; local
201 newcol = p->column + cols;
202 if (newcol < p->column) {
207 p->column = newcol;
  /src/external/gpl3/gdb/dist/readline/readline/
search.c 532 int ret, oldpos, newcol; local
548 ret = noninc_search_from_pos (history_search_string, _rl_history_search_pos + dir, dir, 0, &newcol);
601 rl_point = (newcol >= 0) ? newcol : rl_end;
  /src/external/gpl3/gdb.old/dist/readline/readline/
search.c 532 int ret, oldpos, newcol; local
548 ret = noninc_search_from_pos (history_search_string, _rl_history_search_pos + dir, dir, 0, &newcol);
601 rl_point = (newcol >= 0) ? newcol : rl_end;
  /src/usr.bin/diff/
diffreg.c 1195 int i, j, c, lastc, col, nc, newcol; local
1267 newcol = roundup(col + 1, tabsize);
1269 if (hw > 0 && newcol >= hw)
1273 if (hw > 0 && newcol > hw)
1274 newcol = hw;
1275 printf("%*s", newcol - col, "");
1277 col = newcol;
1654 int col, newcol, tabstop; local
1657 newcol = nc + n;
1660 while ((tabstop = roundup(col + 1, tabsize)) <= newcol) {
    [all...]
  /src/bin/ksh/
vi.c 63 static int newcol ARGS((int, int));
1778 col = newcol((unsigned char) es->cbuf[cur++], col);
1800 tcol = newcol((unsigned char) es->cbuf[tcur++], tcol);
1803 holdcol1 = newcol((unsigned char) es->cbuf[holdcur1++],
1809 newcol(ch, col) function

Completed in 44 milliseconds