Lines Matching refs:vc_cols
140 car1 = conp->vc_screenbuf[conp->vc_x + conp->vc_y * conp->vc_cols]; in sticon_cursor()
172 sti_bmove(sti, t + count, 0, t, 0, b - t - count, conp->vc_cols); in sticon_scroll()
173 sti_clear(sti, b - count, 0, count, conp->vc_cols, conp->vc_video_erase_char); in sticon_scroll()
177 sti_bmove(sti, t, 0, t + count, 0, b - t - count, conp->vc_cols); in sticon_scroll()
178 sti_clear(sti, t, 0, count, conp->vc_cols, conp->vc_video_erase_char); in sticon_scroll()
204 int vc_cols, vc_rows; in sticon_init() local
207 vc_cols = sti_onscreen_x(sti) / sti->font_width; in sticon_init()
212 c->vc_cols = vc_cols; in sticon_init()
217 vc_resize(c, vc_cols, vc_rows); in sticon_init()
253 sti_clear(sticon_sti, 0,0, c->vc_rows, c->vc_cols, BLANK); in sticon_blank()
288 x = offset % conp->vc_cols; in sticon_getxy()
289 y = offset / conp->vc_cols; in sticon_getxy()
292 ret = pos + (conp->vc_cols - x) * 2; in sticon_getxy()
299 x = offset % conp->vc_cols; in sticon_getxy()
300 y = offset / conp->vc_cols; in sticon_getxy()
301 ret = pos + (conp->vc_cols - x) * 2; in sticon_getxy()