Lines Matching refs:j
1325 int i, j; in ff_wc_equal() local
1337 for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;) in ff_wc_equal()
1340 c2 = PTR2CHAR(s2 + j); in ff_wc_equal()
1349 j += mb_ptr2len(s2 + j); in ff_wc_equal()
1351 return s1[i] == s2[j]; in ff_wc_equal()
2267 int j; in is_unique() local
2273 for (j = 0; j < gap->ga_len; j++) in is_unique()
2275 if (j == i) in is_unique()
2279 other_path_len = (int)STRLEN(other_paths[j]); in is_unique()
2283 rival = other_paths[j] + other_path_len - candidate_len; in is_unique()
2285 && (rival == other_paths[j] || vim_ispathsep(*(rival - 1)))) in is_unique()
2391 int j = 0; in get_path_cutoff() local
2393 while ((fname[j] == path_part[i][j] in get_path_cutoff()
2395 || (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j])) in get_path_cutoff()
2397 ) && fname[j] != NUL && path_part[i][j] != NUL) in get_path_cutoff()
2398 j++; in get_path_cutoff()
2399 if (j > maxlen) in get_path_cutoff()
2401 maxlen = j; in get_path_cutoff()
2402 cutoff = &fname[j]; in get_path_cutoff()