Lines Matching refs:num_matches
28 int num_matches; in ex_help() local
88 n = find_help_tags(arg, &num_matches, &matches, in ex_help()
95 for (i = 0; i < num_matches; ++i) in ex_help()
103 if (i >= num_matches || n == FAIL) in ex_help()
112 FreeWild(num_matches, matches); in ex_help()
118 FreeWild(num_matches, matches); in ex_help()
321 int *num_matches, in find_help_tags() argument
560 *num_matches = 0; in find_help_tags()
564 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK in find_help_tags()
565 && *num_matches > 0) in find_help_tags()
569 qsort((void *)*matches, (size_t)*num_matches, in find_help_tags()
572 while (*num_matches > TAG_MANY) in find_help_tags()
573 vim_free((*matches)[--*num_matches]); in find_help_tags()