Searched refs:text_rows_ (Results 1 – 3 of 3) sorted by relevance
179 int row = (text_top_ + text_rows_ - 1) % text_rows_; in draw_screen_locked()182 ty > y + 2 && count < text_rows_; in draw_screen_locked()186 if (row < 0) row = text_rows_ - 1; in draw_screen_locked()204 if (text_rows_ > kMaxRows) text_rows_ = kMaxRows; in InitTextParams()238 if (text_rows_ > 0 && text_cols_ > 0) { in Print()244 text_row_ = (text_row_ + 1) % text_rows_; in Print()245 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in Print()258 if (text_rows_ > 0 && text_cols_ > 0) { in StartMenu()343 text_row_ = text_top_ = text_rows_ - 2; in ShowFile()347 if (text_col_ == 0 && text_row_ >= text_rows_ - 2) { in ShowFile()[all …]
63 text_rows_(0), in ScreenRecoveryUI()330 int row = (text_top_ + text_rows_ - 1) % text_rows_; in draw_screen_locked()333 ty >= y && count < text_rows_; in draw_screen_locked()337 if (row < 0) row = text_rows_ - 1; in draw_screen_locked()454 text_rows_ = gr_fb_height() / char_height_; in InitTextParams()472 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()473 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()474 menu_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()604 if (text_rows_ > 0 && text_cols_ > 0) { in PrintV()609 text_row_ = (text_row_ + 1) % text_rows_; in PrintV()[all …]
105 size_t text_cols_, text_rows_; variable