Lines Matching refs:MAXWLEN

50     char_u	su_badword[MAXWLEN]; // bad word truncated at su_badlen
51 char_u su_fbadword[MAXWLEN]; // su_badword case-folded
52 char_u su_sal_badword[MAXWLEN]; // su_badword soundfolded
462 char_u wcopy[MAXWLEN + 2]; in spell_suggest()
590 vim_strncpy(wcopy, stp->st_word, MAXWLEN); in spell_suggest()
791 if (su->su_badlen >= MAXWLEN) in spell_find_suggest()
792 su->su_badlen = MAXWLEN - 1; // just in case in spell_find_suggest()
795 su->su_fbadword, MAXWLEN); in spell_find_suggest()
929 char_u line[MAXWLEN * 2]; in spell_suggest_file()
932 char_u cword[MAXWLEN]; in spell_suggest_file()
943 while (!vim_fgets(line, MAXWLEN * 2, fd) && !got_int) in spell_suggest_file()
1089 char_u word[MAXWLEN]; in suggest_try_special()
1167 char_u fword[MAXWLEN]; // copy of the bad word, case-folded in suggest_try_change()
1179 (void)spell_casefold(curwin, p, (int)STRLEN(p), fword + n, MAXWLEN - n); in suggest_try_change()
1183 if (n < MAXWLEN) in suggest_try_change()
1248 char_u tword[MAXWLEN]; // good word collected so far in suggest_trie_walk()
1249 trystate_T stack[MAXWLEN]; in suggest_trie_walk()
1250 char_u preword[MAXWLEN * 3]; // word found with proper case; in suggest_trie_walk()
1255 char_u compflags[MAXWLEN]; // compound flags, one for each word in suggest_trie_walk()
1277 char_u changename[MAXWLEN][80]; in suggest_trie_walk()
1703 && (slang->sl_compsylmax < MAXWLEN in suggest_trie_walk()
2680 char_u uword[MAXWLEN]; // "fword" in upper-case in find_keepcap_word()
2685 idx_T arridx[MAXWLEN]; in find_keepcap_word()
2686 int round[MAXWLEN]; in find_keepcap_word()
2687 int fwordidx[MAXWLEN]; in find_keepcap_word()
2688 int uwordidx[MAXWLEN]; in find_keepcap_word()
2689 int kwordlen[MAXWLEN]; in find_keepcap_word()
2829 char_u badsound[MAXWLEN]; in score_comp_sal()
2889 char_u badsound[MAXWLEN]; in score_combine()
3001 char_u badsound2[MAXWLEN]; in stp_sal_score()
3002 char_u fword[MAXWLEN]; in stp_sal_score()
3003 char_u goodsound[MAXWLEN]; in stp_sal_score()
3004 char_u goodword[MAXWLEN]; in stp_sal_score()
3014 su->su_badptr, stp->st_orglen, fword, MAXWLEN); in stp_sal_score()
3029 if (lendiff > 0 && stp->st_wordlen + lendiff < MAXWLEN) in stp_sal_score()
3088 char_u salword[MAXWLEN]; in suggest_try_soundalike()
3169 char_u theword[MAXWLEN]; in add_sound_suggest()
3231 for (wlen = 0; wlen < MAXWLEN - 3; ++wlen) in add_sound_suggest()
3267 char_u cword[MAXWLEN]; in add_sound_suggest()
3613 char_u longword[MAXWLEN + 1]; in check_suggestions()
3623 vim_strncpy(longword, stp[i].st_word, MAXWLEN); in check_suggestions()
3626 MAXWLEN - len); in check_suggestions()
3685 char_u sal_badword[MAXWLEN]; in rescore_one()
4013 int wbadword[MAXWLEN]; in spell_edit_score()
4014 int wgoodword[MAXWLEN]; in spell_edit_score()
4317 int wbadword[MAXWLEN]; in spell_edit_score_limit_w()
4318 int wgoodword[MAXWLEN]; in spell_edit_score_limit_w()