Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstate.c282 g->uvhead.u.l.prev = &g->uvhead; in lua_newstate()
283 g->uvhead.u.l.next = &g->uvhead; in lua_newstate()
H A Dlfunc.c66 uv->u.l.prev = &g->uvhead; /* double link it in `uvhead' list */ in luaF_findupval()
67 uv->u.l.next = g->uvhead.u.l.next; in luaF_findupval()
69 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.c326 for (uv = g->uvhead.u.l.next; uv != &g->uvhead; uv = uv->u.l.next) { in remarkupvals()