Searched refs:goal_len (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dspellcheck.c173 get_edit_distance_cutoff (size_t goal_len, size_t candidate_len) argument
175 size_t max_length = MAX (goal_len, candidate_len);
176 size_t min_length = MIN (goal_len, candidate_len);
278 get_old_cutoff (size_t goal_len, size_t candidate_len) argument
280 return MAX (goal_len, candidate_len) / 2;
292 for (size_t goal_len = 0; goal_len < 30; goal_len++)
294 ASSERT_TRUE (get_edit_distance_cutoff (goal_len, candidate_len)
295 <= get_old_cutoff (goal_len, candidate_le
[all...]
H A Dspellcheck.h69 extern edit_distance_t get_edit_distance_cutoff (size_t goal_len,
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dspellcheck.cc188 get_edit_distance_cutoff (size_t goal_len, size_t candidate_len) argument
190 size_t max_length = MAX (goal_len, candidate_len);
191 size_t min_length = MIN (goal_len, candidate_len);
296 get_old_cutoff (size_t goal_len, size_t candidate_len) argument
298 return BASE_COST * MAX (goal_len, candidate_len) / 2;
310 for (size_t goal_len = 0; goal_len < 30; goal_len++)
312 ASSERT_TRUE (get_edit_distance_cutoff (goal_len, candidate_len)
313 <= get_old_cutoff (goal_len, candidate_le
[all...]
H A Dspellcheck.h69 extern edit_distance_t get_edit_distance_cutoff (size_t goal_len,

Completed in 71 milliseconds