Home
last modified time | relevance | path

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

/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlgc.c1142 int stepmul = g->gcstepmul; in incstep() local
1143 if (stepmul < 40) stepmul = 40; /* avoid ridiculous low values (and 0) */ in incstep()
1146 debt = (debt < MAX_LMEM / stepmul) ? debt * stepmul : MAX_LMEM; in incstep()
1154 debt = (debt / stepmul) * STEPMULADJ; /* convert 'work units' to Kb */ in incstep()
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlgc.c1117 int stepmul = g->gcstepmul; in getdebt() local
1121 debt = (debt < MAX_LMEM / stepmul) ? debt * stepmul : MAX_LMEM; in getdebt()