Lines Matching defs:which
84 int which = destline;
109 if (which < 10)
111 if (which < 100)
116 *dp++ = (which / 100) | '0';
117 which %= 100;
122 *dp++ = which / 10 | '0';
124 *dp++ = which % 10 | '0';
128 which = oncol ? destcol : destline;
133 if (which > *cp++)
134 which += *cp++;
141 which += *cp++;
153 * when they go to column 9 we increment which is wrong
159 * programs which use termlib to stty tabs so they
164 if (which == 0 || which == CTRL('d') || which == '\n') {
174 which++;
175 } while (which == '\n');
177 *dp++ = (char) which;
187 which++;
196 which = (which/10 << 4) + which%10;
202 which = which - 2 * (which%16);