Lines Matching refs:jump

1021 		uint32_t index, jump;  in gc_scroll_down()  local
1023 jump = num * gc_buffer_columns; in gc_scroll_down()
1029 if (gc_buffer_attributes[index] != gc_buffer_attributes[index - jump] || in gc_scroll_down()
1030 gc_buffer_characters[index] != gc_buffer_characters[index - jump] || in gc_scroll_down()
1031 gc_buffer_colorcodes[index] != gc_buffer_colorcodes[index - jump]) { in gc_scroll_down()
1032 if (gc_color_code != gc_buffer_colorcodes[index - jump]) { in gc_scroll_down()
1033 gc_update_color(COLOR_CODE_GET(gc_buffer_colorcodes[index - jump], TRUE ), TRUE ); in gc_scroll_down()
1034 gc_update_color(COLOR_CODE_GET(gc_buffer_colorcodes[index - jump], FALSE), FALSE); in gc_scroll_down()
1037 if (gc_buffer_colorcodes[index] != gc_buffer_colorcodes[index - jump]) { in gc_scroll_down()
1040 /* ch */ gc_buffer_characters[index - jump], in gc_scroll_down()
1041 /* attrs */ gc_buffer_attributes[index - jump], in gc_scroll_down()
1047 /* ch */ gc_buffer_characters[index - jump], in gc_scroll_down()
1048 /* attrs */ gc_buffer_attributes[index - jump], in gc_scroll_down()
1053 gc_buffer_attributes[index] = gc_buffer_attributes[index - jump]; in gc_scroll_down()
1054 gc_buffer_characters[index] = gc_buffer_characters[index - jump]; in gc_scroll_down()
1055 gc_buffer_colorcodes[index] = gc_buffer_colorcodes[index - jump]; in gc_scroll_down()
1115 uint32_t index, jump; in gc_scroll_up() local
1117 jump = num * gc_buffer_columns; in gc_scroll_up()
1123 if (gc_buffer_attributes[index] != gc_buffer_attributes[index + jump] || in gc_scroll_up()
1124 gc_buffer_characters[index] != gc_buffer_characters[index + jump] || in gc_scroll_up()
1125 gc_buffer_colorcodes[index] != gc_buffer_colorcodes[index + jump]) { in gc_scroll_up()
1126 if (gc_color_code != gc_buffer_colorcodes[index + jump]) { in gc_scroll_up()
1127 gc_update_color(COLOR_CODE_GET(gc_buffer_colorcodes[index + jump], TRUE ), TRUE ); in gc_scroll_up()
1128 gc_update_color(COLOR_CODE_GET(gc_buffer_colorcodes[index + jump], FALSE), FALSE); in gc_scroll_up()
1131 if (gc_buffer_colorcodes[index] != gc_buffer_colorcodes[index + jump]) { in gc_scroll_up()
1134 /* ch */ gc_buffer_characters[index + jump], in gc_scroll_up()
1135 /* attrs */ gc_buffer_attributes[index + jump], in gc_scroll_up()
1141 /* ch */ gc_buffer_characters[index + jump], in gc_scroll_up()
1142 /* attrs */ gc_buffer_attributes[index + jump], in gc_scroll_up()
1147 gc_buffer_attributes[index] = gc_buffer_attributes[index + jump]; in gc_scroll_up()
1148 gc_buffer_characters[index] = gc_buffer_characters[index + jump]; in gc_scroll_up()
1149 gc_buffer_colorcodes[index] = gc_buffer_colorcodes[index + jump]; in gc_scroll_up()