Home
last modified time | relevance | path

Searched refs:breakcheck_count (Results 1 – 3 of 3) sorted by relevance

/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dmisc1.c872 static int breakcheck_count = 0; variable
876 if (++breakcheck_count >= BREAKCHECK_SKIP) { in line_breakcheck()
877 breakcheck_count = 0; in line_breakcheck()
887 if (++breakcheck_count >= BREAKCHECK_SKIP * 10) { in fast_breakcheck()
888 breakcheck_count = 0; in fast_breakcheck()
896 if (++breakcheck_count >= BREAKCHECK_SKIP * 100) { in veryfast_breakcheck()
897 breakcheck_count = 0; in veryfast_breakcheck()
/dports/editors/vim/vim-8.2.3745/src/
H A Dmisc1.c2208 static int breakcheck_count = 0; variable
2213 if (++breakcheck_count >= BREAKCHECK_SKIP) in line_breakcheck()
2215 breakcheck_count = 0; in line_breakcheck()
2226 if (++breakcheck_count >= BREAKCHECK_SKIP * 10) in fast_breakcheck()
2228 breakcheck_count = 0; in fast_breakcheck()
2239 if (++breakcheck_count >= BREAKCHECK_SKIP * 100) in veryfast_breakcheck()
2241 breakcheck_count = 0; in veryfast_breakcheck()
H A Dvim9execute.c1658 static int breakcheck_count = 0; // using "static" makes it faster in exec_instructions() local
1662 if (unlikely(++breakcheck_count >= 100)) in exec_instructions()
1665 breakcheck_count = 0; in exec_instructions()