Home
last modified time | relevance | path

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

/freebsd/contrib/flex/src/
H A Dscanflags.c37 size_t _sf_top_ix=0, _sf_max=0; variable
42 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()
H A Dflexdef.h1148 extern size_t _sf_top_ix, _sf_max; /**< stack of scanner flags. */
/freebsd/contrib/flex/
H A DChangeLog663 the maximum size _sf_max wasn't changed. As the indentation beneath
665 …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: ...this
671 sizeof(scanflags_t) * _sf_max); ^~~~~~~