Lines Matching refs:row
1021 uint32_t column, row; in gc_scroll_down() local
1026 for (row = bottom - 1; row >= top + num; row--) { in gc_scroll_down()
1027 index = row * gc_buffer_columns; in gc_scroll_down()
1040 /* yy */ row, in gc_scroll_down()
1047 /* yy */ row, in gc_scroll_down()
1068 for (row = top; row < top + num; row++) { in gc_scroll_down()
1069 index = row * gc_buffer_columns; in gc_scroll_down()
1077 /* yy */ row, in gc_scroll_down()
1084 /* yy */ row, in gc_scroll_down()
1115 uint32_t column, row; in gc_scroll_up() local
1120 for (row = top; row < bottom - num; row++) { in gc_scroll_up()
1121 index = row * gc_buffer_columns; in gc_scroll_up()
1134 /* yy */ row, in gc_scroll_up()
1141 /* yy */ row, in gc_scroll_up()
1162 for (row = bottom - num; row < bottom; row++) { in gc_scroll_up()
1163 index = row * gc_buffer_columns; in gc_scroll_up()
1171 /* yy */ row, in gc_scroll_up()
1178 /* yy */ row, in gc_scroll_up()
1329 uint32_t *p, *endp, *row; in vc_clear_screen() local
1369 for (row = p; row < endp; row += rowlongs) { in vc_clear_screen()
1371 *(row + col) = vc_color_back; in vc_clear_screen()
2263 uint32_t row; member
2289 if (++state->row >= state->height) { in vc_decompress_lzss_next_pixel()