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