Home | History | Annotate | Download | only in tests

Lines Matching refs:table

71   diff_table_entry table[a_lines.size() + 1][b_lines.size() + 1];
86 table[i][j].longest_common_subsequence_length = 0;
87 table[i][j].propagation_directions = directions;
89 table[i][j].longest_common_subsequence_length =
90 table[i-1][j-1].longest_common_subsequence_length + 1;
91 table[i][j].propagation_directions = UP_LEFT;
93 size_t length_up = table[i-1][j].longest_common_subsequence_length;
94 size_t length_left = table[i][j-1].longest_common_subsequence_length;
108 table[i][j].longest_common_subsequence_length = length;
109 table[i][j].propagation_directions = directions;
118 while (table[i][j].propagation_directions) {
119 if (table[i][j].propagation_directions & UP_LEFT) {
123 } else if (table[i][j].propagation_directions & UP) {