Lines Matching defs:ocol
122 int ocol = 0; /* current output column */
135 ocol++;
138 if ((ocol & 7) != 0)
141 if ((ocol % tabstops[0]) != 0)
145 ocol > tabstops[cstop])
154 if (ocol != tabstops[cstop])
178 if (--ocol < 0)
179 ocol = 0;
189 /* adjust ocol to current tabstop */
191 ocol = (ocol + 8) & ~07;
193 ocol += ocol % tabstops[0];
196 ocol < tabstops[cstop])
197 ocol = tabstops[cstop++];
199 ocol++;
222 ocol += p_col;