Searched refs:ch (Results 1 – 2 of 2) sorted by relevance
171 unsigned char ch; in gr_text() local172 while ((ch = *s++)) { in gr_text()175 if (ch < ' ' || ch > '~') { in gr_text()176 ch = '?'; in gr_text()180 const uint8_t* src_p = font->texture->data() + ((ch - ' ') * font->char_width) + in gr_text()
1052 void ScreenRecoveryUI::PutChar(char ch) { in PutChar() argument1054 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()1055 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()1108 int ch = getc(fp); in ShowFile() local1109 if (ch == EOF) { in ShowFile()1113 PutChar(ch); in ShowFile()