Searched refs:upvalue (Results 1 – 8 of 8) sorted by relevance
| /src/contrib/lua/src/ |
| H A D | lfunc.h | 14 #define sizeCclosure(n) (cast_int(offsetof(CClosure, upvalue)) + \
|
| H A D | lapi.c | 80 return (idx <= func->nupvalues) ? &func->upvalue[idx-1] in index2value() 593 setobj2n(L, &cl->upvalue[n], s2v(L->top.p + n)); in lua_pushcclosure() 1364 *val = &f->upvalue[n-1]; in aux_upvalue() 1440 return &f->upvalue[n - 1]; in lua_upvalueid()
|
| H A D | ltests.c | 409 checkvalref(g, clgc, &cl->upvalue[i]); in checkCclosure() 1080 static int upvalue (lua_State *L) { in upvalue() function 1950 {"upvalue", upvalue},
|
| H A D | lobject.h | 650 TValue upvalue[1]; /* list of upvalues */ member
|
| H A D | lgc.c | 598 markvalue(g, &cl->upvalue[i]); in traverseCclosure()
|
| /src/sys/contrib/openzfs/module/lua/ |
| H A D | lapi.c | 73 return (idx <= func->nupvalues) ? &func->upvalue[idx-1] : NONVALIDVALUE; in index2addr() 568 setobj2n(L, &cl->c.upvalue[n], L->top + n); in lua_pushcclosure() 1193 *val = &f->upvalue[n-1]; in aux_upvalue() 1265 return &f->upvalue[n - 1]; in lua_upvalueid()
|
| H A D | lobject.h | 520 TValue upvalue[]; /* list of upvalues */ member
|
| H A D | lgc.c | 481 markvalue(g, &cl->upvalue[i]); in traverseCclosure()
|