Home
last modified time | relevance | path

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

/external/lua/src/
Dlfunc.h14 #define sizeCclosure(n) (cast_int(offsetof(CClosure, upvalue)) + \
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()
1405 return &f->upvalue[n - 1]; in lua_upvalueid()
Dlobject.h625 TValue upvalue[1]; /* list of upvalues */ member
Dlgc.c591 markvalue(g, &cl->upvalue[i]); in traverseCclosure()