Home
last modified time | relevance | path

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

/external/lua/src/
Dlfunc.h17 #define sizeLclosure(n) (cast_int(offsetof(LClosure, upvals)) + \
Dlfunc.c40 while (nupvals--) c->upvals[nupvals] = NULL; in luaF_newLclosure()
55 cl->upvals[i] = uv; in luaF_initupvals()
Dlvm.c795 ncl->upvals[i] = luaF_findupval(L, base + uv[i].idx); in pushclosure()
797 ncl->upvals[i] = encup[uv[i].idx]; in pushclosure()
798 luaC_objbarrier(L, ncl, ncl->upvals[i]); in pushclosure()
1205 setobj2s(L, ra, cl->upvals[b]->v); in luaV_execute()
1209 UpVal *uv = cl->upvals[GETARG_B(i)]; in luaV_execute()
1216 TValue *upval = cl->upvals[GETARG_B(i)]->v; in luaV_execute()
1268 TValue *upval = cl->upvals[GETARG_A(i)]->v; in luaV_execute()
1784 halfProtect(pushclosure(L, p, cl->upvals, base, ra)); in luaV_execute()
Dlapi.c1069 setobj(L, f->upvals[0]->v, gt); in lua_load()
1070 luaC_barrier(L, f->upvals[0], gt); in lua_load()
1342 *val = f->upvals[n-1]->v; in aux_upvalue()
1343 if (owner) *owner = obj2gco(f->upvals[n - 1]); in aux_upvalue()
1392 return &f->upvals[n - 1]; /* get its upvalue pointer */ in getupvalref()
Dlobject.h632 UpVal *upvals[1]; /* list of upvalues */ member
Dldebug.c671 if (c->upvals[i]->v == o) { in getupvalname()
Dlgc.c603 UpVal *uv = cl->upvals[i]; in traverseLclosure()