Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dmisc1.c2207 static int breakcheck_count = 0; variable
2212 if (++breakcheck_count >= BREAKCHECK_SKIP) in line_breakcheck()
2214 breakcheck_count = 0; in line_breakcheck()
2225 if (++breakcheck_count >= BREAKCHECK_SKIP * 10) in fast_breakcheck()
2227 breakcheck_count = 0; in fast_breakcheck()
2238 if (++breakcheck_count >= BREAKCHECK_SKIP * 100) in veryfast_breakcheck()
2240 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()