Searched refs:ch (Results 1 – 2 of 2) sorted by relevance
170 unsigned char ch; in gr_text() local171 while ((ch = *s++)) { in gr_text()174 if (ch < ' ' || ch > '~') { in gr_text()175 ch = '?'; in gr_text()179 const uint8_t* src_p = font->texture->data() + ((ch - ' ') * font->char_width) + in gr_text()
1087 void ScreenRecoveryUI::PutChar(char ch) { in PutChar() argument1089 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()1090 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()1143 int ch = getc(fp); in ShowFile() local1144 if (ch == EOF) { in ShowFile()1148 PutChar(ch); in ShowFile()