Home
last modified time | relevance | path

Searched refs:uvhead (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlstate.c281 g->uvhead.u.l.prev = &g->uvhead; in lua_newstate()
282 g->uvhead.u.l.next = &g->uvhead; in lua_newstate()
H A Dlfunc.c64 uv->u.l.prev = &g->uvhead; /* double link it in `uvhead' list */ in luaF_findupval()
65 uv->u.l.next = g->uvhead.u.l.next; in luaF_findupval()
67 g->uvhead.u.l.next = uv; in luaF_findupval()
H A Dlstate.h137 UpVal uvhead; /* head of double-linked list of all open upvalues */ member
H A Dlgc.c324 for (uv = g->uvhead.u.l.next; uv != &g->uvhead; uv = uv->u.l.next) { in remarkupvals()