Searched refs:upvals (Results 1 – 7 of 7) sorted by relevance
/external/lua/src/ |
D | lfunc.h | 17 #define sizeLclosure(n) (cast_int(offsetof(LClosure, upvals)) + \
|
D | lfunc.c | 40 while (nupvals--) c->upvals[nupvals] = NULL; in luaF_newLclosure() 55 cl->upvals[i] = uv; in luaF_initupvals()
|
D | lvm.c | 795 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()
|
D | lapi.c | 1069 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()
|
D | lobject.h | 632 UpVal *upvals[1]; /* list of upvalues */ member
|
D | ldebug.c | 671 if (c->upvals[i]->v == o) { in getupvalname()
|
D | lgc.c | 603 UpVal *uv = cl->upvals[i]; in traverseLclosure()
|