Home
last modified time | relevance | path

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

/dports/textproc/turboxsl/turboxsl-b03c2c9/src/
H A Dfunctions.c1302 pctx->perl_cb_max = 20; in register_function()
1304 pctx->perl_functions = malloc(sizeof(CB_TABLE)*pctx->perl_cb_max); in register_function()
1305 } else if(pctx->perl_cb_ptr >= pctx->perl_cb_max) { in register_function()
1306 pctx->perl_cb_max += 20; in register_function()
1307 pctx->perl_functions = realloc(pctx->perl_functions, sizeof(CB_TABLE)*pctx->perl_cb_max); in register_function()
H A Dltr_xsl.h90 unsigned perl_cb_max; member