Lines Matching defs:col
229 "plod: plodding from col %d, row %d to col %d, row %d\n",
502 * Return the column number that results from being in column col and
504 * the case where col > COLS, even if ts does not divide COLS.
507 tabcol(int col, int ts)
511 if (col >= COLS) {
512 offset = COLS * (col / COLS);
513 col -= offset;
516 return (col + ts - (col % ts) + offset);