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.c880 if (g->sweepgc == &ho->next) { /* avoid removing current sweep object */ in luaC_checkfinalizer()
882 g->sweepgc = sweeptolive(L, g->sweepgc, NULL); in luaC_checkfinalizer()
938 lua_assert(g->sweepgc == NULL && g->sweepfin == NULL); in entersweep()
942 g->sweepgc = sweeptolive(L, &g->allgc, &n); in entersweep()
1086 if (g->sweepgc) { in singlestep()
1087 g->sweepgc = sweeplist(L, g->sweepgc, GCSWEEPMAX); in singlestep()
H A Dlstate.h129 GCObject **sweepgc; /* current position of sweep in list 'allgc' */ member
H A Dlstate.c296 g->sweepgc = g->sweepfin = NULL; in lua_newstate()
/freebsd/contrib/lua/src/
H A Dlgc.c1027 if (g->sweepgc == &o->next) /* should not remove 'sweepgc' object */ in luaC_checkfinalizer()
1028 g->sweepgc = sweeptolive(L, g->sweepgc); /* change 'sweepgc' */ in luaC_checkfinalizer()
1487 lua_assert(g->sweepgc == NULL); in entersweep()
1488 g->sweepgc = sweeptolive(L, &g->allgc); in entersweep()
1568 if (g->sweepgc) { in sweepstep()
1571 g->sweepgc = sweeplist(L, g->sweepgc, GCSWEEPMAX, &count); in sweepstep()
1577 g->sweepgc = nextlist; in sweepstep()
H A Dlstate.h277 GCObject **sweepgc; /* current position of sweep in list */ member
H A Dlstate.c393 g->sweepgc = NULL; in lua_newstate()
H A Dltests.c636 assert(g->sweepgc == NULL || issweepphase(g)); in lua_checkmemory()