Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/minui/
Dgraphics.cpp171 unsigned char ch; in gr_text() local
172 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()
/bootable/recovery/recovery_ui/
Dscreen_ui.cpp1052 void ScreenRecoveryUI::PutChar(char ch) { in PutChar() argument
1054 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() local
1109 if (ch == EOF) { in ShowFile()
1113 PutChar(ch); in ShowFile()