Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dnetbeans.c547 static int globalsignmaplen = 0; variable
3220 if (globalsignmapused == globalsignmaplen) in addsigntype()
3222 if (globalsignmaplen == 0) // first allocation in addsigntype()
3224 globalsignmaplen = 20; in addsigntype()
3225 globalsignmap = ALLOC_CLEAR_MULT(char *, globalsignmaplen); in addsigntype()
3230 int oldlen = globalsignmaplen; in addsigntype()
3233 globalsignmaplen *= 2; in addsigntype()
3234 incr = globalsignmaplen - oldlen; in addsigntype()
3236 globalsignmaplen * sizeof(char *)); in addsigntype()
3240 globalsignmaplen = 0; in addsigntype()