Home
last modified time | relevance | path

Searched refs:allgc (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlfunc.c102 gch(o)->next = g->allgc; /* link upvalue into 'allgc' list */ in luaF_close()
103 g->allgc = o; in luaF_close()
Dlgc.c218 list = &g->allgc; /* standard list for collectable objects */ in luaC_newobj()
793 gch(o)->next = g->allgc; /* return it to 'allgc' list */ in udata2finalize()
794 g->allgc = o; in udata2finalize()
887 for (p = &g->allgc; *p != o; p = &gch(*p)->next) { /* empty */ } in luaC_checkfinalizer()
944 g->sweepgc = sweeptolive(L, &g->allgc, &n); in entersweep()
992 sweepwholelist(L, &g->allgc); in luaC_freeallobjects()
Dlstate.h127 GCObject *allgc; /* list of all collectable objects */ member
Dlstate.c296 g->allgc = NULL; in lua_newstate()