Home | History | Annotate | Download | only in fold

Lines Matching defs:col

136 	int col, indx, i;
138 col = indx = 0;
146 col = indx = 0;
150 col = new_column_position (col, ch);
151 if (col > width) {
172 col = 0;
174 col = new_column_position (col, buf[i]);
179 col = indx = 0;
184 col = new_column_position (col, ch);
209 new_column_position (int col, wint_t ch)
216 if (col > 0)
217 --col;
220 col = 0;
223 col = (col + 8) & ~7;
228 col += w;
235 col += wcrtomb(dummy, ch, NULL);
238 return col;