Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlfunc.c101 gch(o)->next = g->allgc; /* link upvalue into 'allgc' list */ in luaF_close()
102 g->allgc = o; in luaF_close()
H A Dlgc.c217 list = &g->allgc; /* standard list for collectable objects */ in luaC_newobj()
792 gch(o)->next = g->allgc; /* return it to 'allgc' list */ in udata2finalize()
793 g->allgc = o; in udata2finalize()
886 for (p = &g->allgc; *p != o; p = &gch(*p)->next) { /* empty */ } in luaC_checkfinalizer()
943 g->sweepgc = sweeptolive(L, &g->allgc, &n); in entersweep()
991 sweepwholelist(L, &g->allgc); in luaC_freeallobjects()
H A Dlstate.h128 GCObject *allgc; /* list of all collectable objects */ member
H A Dlstate.c294 g->allgc = NULL; in lua_newstate()