Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlgc.c158 gco2t(o)->gclist = g->grayagain; in luaC_barrierback_()
277 linktable(gco2t(o), &g->gray); in reallymarkobject()
527 Table *h = gco2t(o); in propagatemark()
601 next = gco2t(w)->gclist; in convergeephemerons()
602 if (traverseephemeron(g, gco2t(w))) { /* traverse marked some value? */ in convergeephemerons()
625 for (; l != f; l = gco2t(l)->gclist) { in clearkeys()
626 Table *h = gco2t(l); in clearkeys()
643 for (; l != f; l = gco2t(l)->gclist) { in clearvalues()
644 Table *h = gco2t(l); in clearvalues()
674 case LUA_TTABLE: luaH_free(L, gco2t(o)); break; in freeobj()
H A Dlstate.h211 #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h)) macro
/freebsd/contrib/lua/src/
H A Dlgc.c127 case LUA_VTABLE: return &gco2t(o)->gclist; in getgclist()
665 case LUA_VTABLE: return traversetable(g, gco2t(o)); in propagatemark()
700 Table *h = gco2t(w); in convergeephemerons()
726 for (; l; l = gco2t(l)->gclist) { in clearbykeys()
727 Table *h = gco2t(l); in clearbykeys()
745 for (; l != f; l = gco2t(l)->gclist) { in clearbyvalues()
746 Table *h = gco2t(l); in clearbyvalues()
791 luaH_free(L, gco2t(o)); in freeobj()
H A Dlstate.h380 #define gco2t(o) check_exp((o)->tt == LUA_VTABLE, &((cast_u(o))->h)) macro
H A Dlobject.h682 #define hvalue(o) check_exp(ttistable(o), gco2t(val_(o).gc))
H A Dltable.c628 Table *t = gco2t(o); in luaH_new()
H A Dltests.c472 checktable(g, gco2t(o)); in checkrefs()
544 case LUA_VTABLE: o = gco2t(o)->gclist; break; in checkgraylist()