Lines Matching refs:xx
301 u_int xx, yy, cx, cy, ax, bx; in screen_write_copy() local
323 for (xx = ax; xx < bx; xx++) { in screen_write_copy()
324 if (xx >= gl->cellsize) in screen_write_copy()
327 gc = &gl->celldata[xx]; in screen_write_copy()
348 u_int xx; in screen_write_initctx() local
363 for (xx = 1; xx <= screen_size_x(s); xx++) { in screen_write_initctx()
364 gc = grid_view_peek_cell(gd, screen_size_x(s) - xx, s->cy); in screen_write_initctx()
368 ttyctx->last_width = xx; in screen_write_initctx()
502 u_int xx, yy; in screen_write_alignmenttest() local
510 for (xx = 0; xx < screen_size_x(s); xx++) in screen_write_alignmenttest()
511 grid_view_set_cell(s->grid, xx, yy, &gc); in screen_write_alignmenttest()
903 u_int width, xx, last; in screen_write_cell() local
941 xx = screen_size_x(s) - s->cx - width; in screen_write_cell()
942 grid_move_cells(s->grid, s->cx + width, s->cx, s->cy, xx); in screen_write_cell()
964 for (xx = s->cx + 1; xx < s->cx + width; xx++) { in screen_write_cell()
965 tmp_gcp = grid_view_get_cell(gd, xx, s->cy); in screen_write_cell()
1051 u_int xx; in screen_write_overwrite() local
1060 xx = s->cx + 1; in screen_write_overwrite()
1061 while (--xx > 0) { in screen_write_overwrite()
1062 gc = grid_view_peek_cell(gd, xx, s->cy); in screen_write_overwrite()
1065 grid_view_set_cell(gd, xx, s->cy, &grid_default_cell); in screen_write_overwrite()
1069 grid_view_set_cell(gd, xx, s->cy, &grid_default_cell); in screen_write_overwrite()
1076 xx = s->cx + width - 1; in screen_write_overwrite()
1077 while (++xx < screen_size_x(s)) { in screen_write_overwrite()
1078 gc = grid_view_peek_cell(gd, xx, s->cy); in screen_write_overwrite()
1081 grid_view_set_cell(gd, xx, s->cy, &grid_default_cell); in screen_write_overwrite()