Home
last modified time | relevance | path

Searched refs:GCdebt (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlmem.c95 g->GCdebt = (g->GCdebt + nsize) - realosize; in luaM_realloc_()
H A Dlstate.h117 l_mem GCdebt; /* bytes allocated not yet compensated by the collector */ member
221 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt)
H A Dlstate.c104 g->totalbytes -= (debt - g->GCdebt); in luaE_setdebt()
105 g->GCdebt = debt; in luaE_setdebt()
301 g->GCdebt = 0; in lua_newstate()
H A Dlgc.h124 {if (G(L)->GCdebt > 0) {c;}; condchangemem(L);}
H A Dlgc.c1140 l_mem debt = g->GCdebt; in incstep()
H A Dlapi.c1054 debt += g->GCdebt; /* include current debt */ in lua_gc()