Searched refs:_sf_max (Results 1 – 3 of 3) sorted by relevance
37 size_t _sf_top_ix=0, _sf_max=0; variable42 if (_sf_top_ix + 1 >= _sf_max) { in sf_push()43 _sf_max += 32; in sf_push()44 _sf_stk = realloc(_sf_stk, sizeof(scanflags_t) * _sf_max); in sf_push()64 _sf_max = 32; in sf_init()65 _sf_stk = malloc(sizeof(scanflags_t) * _sf_max); in sf_init()
1148 extern size_t _sf_top_ix, _sf_max; /**< stack of scanner flags. */
663 the maximum size _sf_max wasn't changed. As the indentation beneath665 …executed if _sf_max was increased. Found by compiling flex with the -Wmisleading-indentation flag…668 (_sf_top_ix + 1 >= _sf_max) ^~ scanflags.c:44:9: note: ...this671 sizeof(scanflags_t) * _sf_max); ^~~~~~~