HomeSort by: relevance | last modified time | path
    Searched refs:this_col (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/col/
col.c 434 int i, j, nchars, last_col, save, this_col, tot; local
479 this_col = c->c_column;
483 } while (--nchars > 0 && this_col == endc->c_column);
489 this_col + c->c_width > endc->c_column)
493 if (this_col > last_col) {
494 int nspace = this_col - last_col;
501 if (tab_col > this_col)
514 last_col = this_col;
  /xsrc/external/mit/xterm/dist/
charproc.c 6754 int next_col, this_col; /* must be signed */ local
6934 for (offset = 0; offset < len; offset += (Cardinal) this_col) {
6945 this_col = last_col - screen->cur_col + 1;
6951 this_col = 1;
6953 if (offset + (Cardinal) this_col > len) {
6954 this_col = (int) (len - offset);
6956 next_col = screen->cur_col + this_col;
6958 WriteText(xw, offset, (unsigned) this_col);

Completed in 25 milliseconds