Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlmem.c96 g->GCdebt = (g->GCdebt + nsize) - realosize; in luaM_realloc_()
Dlstate.h116 l_mem GCdebt; /* bytes allocated not yet compensated by the collector */ member
219 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt)
Dlstate.c107 g->totalbytes -= (debt - g->GCdebt); in luaE_setdebt()
108 g->GCdebt = debt; in luaE_setdebt()
303 g->GCdebt = 0; in lua_newstate()
Dlgc.h123 {if (G(L)->GCdebt > 0) {c;}; condchangemem(L);}
Dlgc.c1141 l_mem debt = g->GCdebt; in incstep()
Dlapi.c1057 debt += g->GCdebt; /* include current debt */ in lua_gc()