Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/lua/src/
H A Dlfunc.h14 #define sizeCclosure(n) (cast_int(offsetof(CClosure, upvalue)) + \
H A Dlapi.c77 return (idx <= func->nupvalues) ? &func->upvalue[idx-1] : &G(L)->nilvalue; in index2value()
569 setobj2n(L, &cl->upvalue[n], s2v(L->top + n)); in lua_pushcclosure()
1332 *val = &f->upvalue[n-1]; in aux_upvalue()
1408 return &f->upvalue[n - 1]; in lua_upvalueid()
H A Dlobject.h627 TValue upvalue[1]; /* list of upvalues */ member
H A Dlgc.c590 markvalue(g, &cl->upvalue[i]); in traverseCclosure()
/freebsd-13.1/sys/contrib/openzfs/module/lua/
H A Dlapi.c73 return (idx <= func->nupvalues) ? &func->upvalue[idx-1] : NONVALIDVALUE; in index2addr()
566 setobj2n(L, &cl->c.upvalue[n], L->top + n); in lua_pushcclosure()
1191 *val = &f->upvalue[n-1]; in aux_upvalue()
1263 return &f->upvalue[n - 1]; in lua_upvalueid()
H A Dlobject.h517 TValue upvalue[1]; /* list of upvalues */ member
H A Dlgc.c481 markvalue(g, &cl->upvalue[i]); in traverseCclosure()