Home
last modified time | relevance | path

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

/freebsd/contrib/flex/src/
H A Dtblcmp.c229 peakpairs = numtemps * numecs + tblend; in cmptmps()
341 if (tblend < 2) in find_table_space()
347 i = tblend - numecs; in find_table_space()
425 tblend = 0; in inittbl()
426 firstfree = tblend + 1; in inittbl()
455 ++tblend; /* room for transition on end-of-buffer character */ in mkdeftbl()
457 while (tblend + numecs >= current_max_xpairs) in mkdeftbl()
461 nxt[tblend] = end_of_buffer_state; in mkdeftbl()
462 chk[tblend] = jamstate; in mkdeftbl()
465 nxt[tblend + i] = 0; in mkdeftbl()
[all …]
H A Dgen.c213 ((tblend + numecs + 1) >= INT16_MAX in mkctbl()
220 tbl->td_lolen = (flex_uint32_t) (tblend + numecs + 1); /* number of structs */ in mkctbl()
243 while (tblend + 2 >= current_max_xpairs) in mkctbl()
249 base[lastdfa + 1] = tblend + 2; in mkctbl()
250 nxt[tblend + 1] = end_of_buffer_action; in mkctbl()
251 chk[tblend + 1] = numecs + 1; in mkctbl()
252 chk[tblend + 2] = 1; /* anything but EOB */ in mkctbl()
255 nxt[tblend + 2] = 0; in mkctbl()
269 for (i = 0; i <= tblend; ++i) { in mkctbl()
293 tdata[curr++] = chk[tblend + 1]; in mkctbl()
[all …]
H A Dmain.c91 int *base, *def, *nultrans, NUL_ec, tblend, firstfree, **dss, *dfasiz; variable
888 tblsiz = 2 * (lastdfa + numtemps) + 2 * tblend; in flexend()
896 tblend, current_max_xpairs, peakpairs); in flexend()
H A Dflexdef.h584 extern int *base, *def, *nultrans, NUL_ec, tblend, firstfree, **dss,