Searched refs:CNT (Results 1 – 4 of 4) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | spellsuggest.c | 4039 CNT(0, 0) = 0; in spell_edit_score() 4041 CNT(0, j) = CNT(0, j - 1) + SCORE_INS; in spell_edit_score() 4045 CNT(i, 0) = CNT(i - 1, 0) + SCORE_DEL; in spell_edit_score() 4059 CNT(i, j) = CNT(i - 1, j - 1); in spell_edit_score() 4064 CNT(i, j) = SCORE_ICASE + CNT(i - 1, j - 1); in spell_edit_score() 4071 CNT(i, j) = SCORE_SIMILAR + CNT(i - 1, j - 1); in spell_edit_score() 4073 CNT(i, j) = SCORE_SUBST + CNT(i - 1, j - 1); in spell_edit_score() 4096 if (t < CNT(i, j)) in spell_edit_score() 4097 CNT(i, j) = t; in spell_edit_score() 4099 if (t < CNT(i, j)) in spell_edit_score() [all …]
|
| /vim-8.2.3635/src/xdiff/ |
| H A D | xhistogram.c | 85 #define CNT(index, ptr) \ macro 194 rc = XDL_MIN(rc, CNT(index, as)); in try_lcs() 201 rc = XDL_MIN(rc, CNT(index, ae)); in try_lcs()
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | abap.vim | 108 syn keyword abapStatement CALL CASE CATCH CHECK CLASS CLEAR CLOSE CNT COLLECT COMMIT COMMUNICATION …
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_cindent.vim | 5193 #define CNT \ 5213 #define CNT \
|