Searched refs:sweepgc (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.c | 880 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 D | lstate.h | 129 GCObject **sweepgc; /* current position of sweep in list 'allgc' */ member
|
H A D | lstate.c | 296 g->sweepgc = g->sweepfin = NULL; in lua_newstate()
|
/freebsd/contrib/lua/src/ |
H A D | lgc.c | 1027 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 D | lstate.h | 277 GCObject **sweepgc; /* current position of sweep in list */ member
|
H A D | lstate.c | 393 g->sweepgc = NULL; in lua_newstate()
|
H A D | ltests.c | 636 assert(g->sweepgc == NULL || issweepphase(g)); in lua_checkmemory()
|