Home
last modified time | relevance | path

Searched refs:token_index (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/subversion/subversion/libsvn_diff/
HDlcs.c140 while (position[0]->token_index == position[1]->token_index) in svn_diff__snake()
169 if (position[0]->token_index >= 0 in svn_diff__snake()
170 && token_counts[1][position[0]->token_index] == 0) in svn_diff__snake()
172 else if (position[1]->token_index >= 0 in svn_diff__snake()
173 && token_counts[0][position[1]->token_index] == 0) in svn_diff__snake()
244 svn_diff__token_index_t token_index; in svn_diff__lcs() local
283 for (token_index = 0; token_index < num_tokens; token_index++) in svn_diff__lcs()
285 if (token_counts_list1[token_index] == 0) in svn_diff__lcs()
286 unique_count[1] += token_counts_list2[token_index]; in svn_diff__lcs()
287 if (token_counts_list2[token_index] == 0) in svn_diff__lcs()
[all …]
HDdiff.c43 svn_diff__token_index_t token_index; in svn_diff__get_token_counts() local
47 for (token_index = 0; token_index < num_tokens; token_index++) in svn_diff__get_token_counts()
48 token_counts[token_index] = 0; in svn_diff__get_token_counts()
55 token_counts[current->token_index]++; in svn_diff__get_token_counts()
HDdiff.h68 svn_diff__token_index_t token_index; member
HDtoken.c184 position->token_index = node->index; in svn_diff__get_tokens()
HDdiff3.c77 && position[0]->token_index == position[1]->token_index) in svn_diff__resolve_conflict()