Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlgc.c881 if (g->sweepgc == &ho->next) { /* avoid removing current sweep object */ in luaC_checkfinalizer()
883 g->sweepgc = sweeptolive(L, g->sweepgc, NULL); in luaC_checkfinalizer()
939 lua_assert(g->sweepgc == NULL && g->sweepfin == NULL); in entersweep()
943 g->sweepgc = sweeptolive(L, &g->allgc, &n); in entersweep()
1087 if (g->sweepgc) { in singlestep()
1088 g->sweepgc = sweeplist(L, g->sweepgc, GCSWEEPMAX); in singlestep()
H A Dlstate.h130 GCObject **sweepgc; /* current position of sweep in list 'allgc' */ member
H A Dlstate.c297 g->sweepgc = g->sweepfin = NULL; in lua_newstate()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlgc.c550 g->sweepgc = &g->rootgc; in atomic()
583 g->sweepgc = sweeplist(L, g->sweepgc, GCSWEEPMAX); in singlestep()
584 if (*g->sweepgc == NULL) { /* nothing more to sweep? */ in singlestep()
640 g->sweepgc = &g->rootgc; in luaC_fullgc()
H A Dlstate.h76 GCObject **sweepgc; /* position of sweep in `rootgc' */ member
H A Dlstate.c172 g->sweepgc = &g->rootgc; in lua_newstate()