Lines Matching full:cells
59 TextCell *cells; member
210 c = &s->cells[y1 * s->width + x]; in console_show_cursor()
239 c = s->cells + y1 * s->width; in console_refresh()
362 ATTR2CHTYPE(s->cells[src].ch, in text_console_update()
363 s->cells[src].t_attrib.fgcol, in text_console_update()
364 s->cells[src].t_attrib.bgcol, in text_console_update()
365 s->cells[src].t_attrib.bold)); in text_console_update()
383 TextCell *cells, *c, *c1; in text_console_resize() local
400 cells = g_new(TextCell, t->width * t->total_height + 1); in text_console_resize()
402 c = &cells[y * t->width]; in text_console_resize()
404 c1 = &t->cells[y * last_width]; in text_console_resize()
415 g_free(t->cells); in text_console_resize()
416 t->cells = cells; in text_console_resize()
438 c = &s->cells[y1 * s->width]; in vc_put_lf()
581 c = &s->cells[y1 * s->width + x]; in vc_update_xy()
595 TextCell *c = &s->cells[y1 * s->width + x]; in vc_clear_xy()
612 c = &s->cells[y1 * s->width + s->x]; in vc_put_one()
676 c1 = &s->cells[y * s->width + x1]; in vc_csi_P()
677 c2 = &s->cells[y * s->width + x2]; in vc_csi_P()
717 c1 = &s->cells[y * s->width + x1]; in vc_csi_at()
718 c2 = &s->cells[y * s->width + x2]; in vc_csi_at()