HomeSort by: relevance | last modified time | path
    Searched defs:debt (Results 1 - 2 of 2) sorted by relevancy

  /src/external/mit/lua/dist/src/
lapi.c 1176 l_mem debt = 1; /* =1 to signal that it did an actual step */ local
1183 else { /* add 'data' to total debt */
1184 debt = cast(l_mem, data) * 1024 + g->GCdebt;
1185 luaE_setdebt(g, debt);
1189 if (debt > 0 && g->gcstate == GCSpause) /* end of cycle? */
lgc.c 1061 l_mem threshold, debt; local
1068 debt = gettotalbytes(g) - threshold;
1069 if (debt > 0) debt = 0;
1070 luaE_setdebt(g, debt);
1316 ** Set debt for the next minor collection, which will happen when
1336 setminordebt(g); /* set debt assuming next cycle will be minor */
1426 ** Usually, this means doing a minor collection and setting the debt to
1662 ** Performs a basic incremental step. The debt and step size are
1665 ** finishing a cycle (pause state). Finally, it sets the debt tha
1670 l_mem debt = (g->GCdebt \/ WORK2MEM) * stepmul; local
    [all...]

Completed in 22 milliseconds