Lines Matching defs:tmp_gc
1866 struct grid_cell tmp_gc, now_gc;
1954 memcpy(&tmp_gc, gc, sizeof tmp_gc);
1955 tmp_gc.flags |= GRID_FLAG_SELECTED;
1956 grid_view_set_cell(gd, s->cx, s->cy, &tmp_gc);
1958 memcpy(&tmp_gc, gc, sizeof tmp_gc);
1959 tmp_gc.flags &= ~GRID_FLAG_SELECTED;
1960 grid_view_set_cell(gd, s->cx, s->cy, &tmp_gc);
1986 screen_select_cell(s, &tmp_gc, gc);
1987 ttyctx.cell = &tmp_gc;
2107 struct grid_cell tmp_gc;
2119 grid_view_get_cell(gd, xx, s->cy, &tmp_gc);
2120 if (~tmp_gc.flags & GRID_FLAG_PADDING)
2141 grid_view_get_cell(gd, xx, s->cy, &tmp_gc);
2142 if (~tmp_gc.flags & GRID_FLAG_PADDING)
2147 memcpy(&tmp_gc, gc, sizeof tmp_gc);
2148 memset(tmp_gc.data.data, 0,
2149 sizeof tmp_gc.data.data);
2150 *tmp_gc.data.data = ' ';
2151 tmp_gc.data.width = tmp_gc.data.size =
2152 tmp_gc.data.have = 1;
2153 grid_view_set_cell(gd, xx, s->cy, &tmp_gc);