Lines Matching refs:which
84 int which = destline; in tgoto() local
109 if (which < 10) in tgoto()
111 if (which < 100) in tgoto()
116 *dp++ = (which / 100) | '0'; in tgoto()
117 which %= 100; in tgoto()
122 *dp++ = which / 10 | '0'; in tgoto()
124 *dp++ = which % 10 | '0'; in tgoto()
128 which = oncol ? destcol : destline; in tgoto()
133 if (which > *cp++) in tgoto()
134 which += *cp++; in tgoto()
141 which += *cp++; in tgoto()
164 if (which == 0 || which == CTRL('d') || which == '\n') { in tgoto()
174 which++; in tgoto()
175 } while (which == '\n'); in tgoto()
177 *dp++ = (char) which; in tgoto()
187 which++; in tgoto()
196 which = (which/10 << 4) + which%10; in tgoto()
202 which = which - 2 * (which%16); in tgoto()