Lines Matching refs:which
82 int which = destline; in tgoto() local
107 if (which < 10) in tgoto()
109 if (which < 100) in tgoto()
114 *dp++ = (which / 100) | '0'; in tgoto()
115 which %= 100; in tgoto()
120 *dp++ = which / 10 | '0'; in tgoto()
122 *dp++ = which % 10 | '0'; in tgoto()
126 which = oncol ? destcol : destline; in tgoto()
131 if (which > *cp++) in tgoto()
132 which += *cp++; in tgoto()
139 which += *cp++; in tgoto()
162 if (which == 0 || which == CTRL('d') || which == '\n') { in tgoto()
172 which++; in tgoto()
173 } while (which == '\n'); in tgoto()
175 *dp++ = (char) which; in tgoto()
185 which++; in tgoto()
194 which = (which/10 << 4) + which%10; in tgoto()
200 which = which - 2 * (which%16); in tgoto()