Lines Matching refs:row
1020 uint32_t column, row; in gc_scroll_down() local
1025 for (row = bottom - 1; row >= top + num; row--) { in gc_scroll_down()
1026 index = row * gc_buffer_columns; in gc_scroll_down()
1039 /* yy */ row, in gc_scroll_down()
1046 /* yy */ row, in gc_scroll_down()
1067 for (row = top; row < top + num; row++) { in gc_scroll_down()
1068 index = row * gc_buffer_columns; in gc_scroll_down()
1076 /* yy */ row, in gc_scroll_down()
1083 /* yy */ row, in gc_scroll_down()
1114 uint32_t column, row; in gc_scroll_up() local
1119 for (row = top; row < bottom - num; row++) { in gc_scroll_up()
1120 index = row * gc_buffer_columns; in gc_scroll_up()
1133 /* yy */ row, in gc_scroll_up()
1140 /* yy */ row, in gc_scroll_up()
1161 for (row = bottom - num; row < bottom; row++) { in gc_scroll_up()
1162 index = row * gc_buffer_columns; in gc_scroll_up()
1170 /* yy */ row, in gc_scroll_up()
1177 /* yy */ row, in gc_scroll_up()
1331 uint32_t *p, *endp, *row; in vc_clear_screen() local
1371 for (row = p; row < endp; row += rowlongs) { in vc_clear_screen()
1373 *(row + col) = vc_color_back; in vc_clear_screen()
2250 uint32_t row; member
2276 if (++state->row >= state->height) { in vc_decompress_lzss_next_pixel()