Home
last modified time | relevance | path

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

/freebsd/sys/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()
/freebsd/contrib/lua/src/
H A Dlgc.c1029 if (g->sweepgc == &o->next) /* should not remove 'sweepgc' object */ in luaC_checkfinalizer()
1030 g->sweepgc = sweeptolive(L, g->sweepgc); /* change 'sweepgc' */ in luaC_checkfinalizer()
1489 lua_assert(g->sweepgc == NULL); in entersweep()
1490 g->sweepgc = sweeptolive(L, &g->allgc); in entersweep()
1570 if (g->sweepgc) { in sweepstep()
1573 g->sweepgc = sweeplist(L, g->sweepgc, GCSWEEPMAX, &count); in sweepstep()
1579 g->sweepgc = nextlist; in sweepstep()
H A Dlstate.h277 GCObject **sweepgc; /* current position of sweep in list */ member
H A Dlstate.c396 g->sweepgc = NULL; in lua_newstate()
H A Dltests.c636 assert(g->sweepgc == NULL || issweepphase(g)); in lua_checkmemory()