Searched refs:gce (Results 1 – 3 of 3) sorted by relevance
61 grid_store_cell(struct grid_cell_entry *gce, const struct grid_cell *gc, in grid_store_cell() argument64 gce->flags = (gc->flags & ~GRID_FLAG_CLEARED); in grid_store_cell()66 gce->data.fg = gc->fg & 0xff; in grid_store_cell()68 gce->flags |= GRID_FLAG_FG256; in grid_store_cell()70 gce->data.bg = gc->bg & 0xff; in grid_store_cell()72 gce->flags |= GRID_FLAG_BG256; in grid_store_cell()74 gce->data.attr = gc->attr; in grid_store_cell()75 gce->data.data = c; in grid_store_cell()80 grid_need_extended_cell(const struct grid_cell_entry *gce, in grid_need_extended_cell() argument83 if (gce->flags & GRID_FLAG_EXTENDED) in grid_need_extended_cell()[all …]
1865 struct grid_cell_entry *gce; in screen_write_cell() local1931 gce = &gl->celldata[s->cx]; in screen_write_cell()1932 if (gce->flags & GRID_FLAG_EXTENDED) in screen_write_cell()1934 else if (gc->flags != gce->flags) in screen_write_cell()1936 else if (gc->attr != gce->data.attr) in screen_write_cell()1938 else if (gc->fg != gce->data.fg) in screen_write_cell()1940 else if (gc->bg != gce->data.bg) in screen_write_cell()1946 else if (gce->data.data != gc->data.data[0]) in screen_write_cell()
3413 struct grid_cell_entry *gce; in window_copy_cellstring() local3422 gce = &gl->celldata[px]; in window_copy_cellstring()3423 if (gce->flags & GRID_FLAG_PADDING) { in window_copy_cellstring()3428 if (~gce->flags & GRID_FLAG_EXTENDED) { in window_copy_cellstring()3431 return (&gce->data.data); in window_copy_cellstring()3433 if (gce->flags & GRID_FLAG_TAB) { in window_copy_cellstring()3439 utf8_to_data(gl->extddata[gce->offset].data, &ud); in window_copy_cellstring()