Home | History | Annotate | Download | only in sys

Lines Matching refs:ch

70 void __ansi_putchar(const struct term_info *ti, uint8_t ch)
80 switch (ch) {
83 st->parms[0] = ch;
123 if (ch >= 32) {
124 if (st->vtgraphics && (ch & 0xe0) == 0x60)
125 ch = decvt_to_cp437[ch - 0x60];
127 op->write_char(xy.x, xy.y, ch, st);
135 switch (ch) {
167 if (ch >= '0' && ch <= '9') {
168 st->parms[st->nparms] = st->parms[st->nparms] * 10 + (ch - '0');
169 } else if (ch == ';') {
174 } else if (ch == '?') {
177 switch (ch) {
284 bool set = (ch == 'h');
387 if (ch == '#')
395 unsigned int n = (unsigned char)ch - '0';