Lines Matching refs:xx
124 u_int xx, yy; in grid_compare() local
134 for (xx = 0; xx < ga->sx; xx++) { in grid_compare()
135 gca = &gla->celldata[xx]; in grid_compare()
136 gcb = &glb->celldata[xx]; in grid_compare()
224 u_int xx; in grid_expand_line() local
231 for (xx = gl->cellsize; xx < sx; xx++) in grid_expand_line()
232 grid_put_cell(gd, xx, py, &grid_default_cell); in grid_expand_line()
283 u_int xx, yy; in grid_clear() local
307 for (xx = px; xx < px + nx; xx++) { in grid_clear()
308 if (xx >= gd->linedata[yy].cellsize) in grid_clear()
310 grid_put_cell(gd, xx, yy, &grid_default_cell); in grid_clear()
382 u_int xx; in grid_move_cells() local
399 for (xx = px; xx < px + nx; xx++) { in grid_move_cells()
400 if (xx >= dx && xx < dx + nx) in grid_move_cells()
402 grid_put_cell(gd, xx, py, &grid_default_cell); in grid_move_cells()
592 u_int xx; in grid_string_cells() local
607 for (xx = px; xx < px + nx; xx++) { in grid_string_cells()
608 if (gl == NULL || xx >= gl->cellsize) in grid_string_cells()
610 gc = &gl->celldata[xx]; in grid_string_cells()