Home
last modified time | relevance | path

Searched refs:LClosure (Results 1 – 12 of 12) sorted by relevance

/external/lua/src/
Dlfunc.h17 #define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
52 LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems);
53 LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
Dlfunc.c33 LClosure *luaF_newLclosure (lua_State *L, int n) { in luaF_newLclosure()
35 LClosure *c = gco2lcl(o); in luaF_newLclosure()
45 void luaF_initupvals (lua_State *L, LClosure *cl) { in luaF_initupvals()
Dlobject.h241 { TValue *io = (obj); LClosure *x_ = (x); \
426 struct LClosure *cache; /* last-created closure with this prototype */
453 typedef struct LClosure { struct
457 } LClosure; argument
462 LClosure l;
Dlundump.h26 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
Dlparser.h129 LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
Dlundump.c258 LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { in luaU_undump()
260 LClosure *cl; in luaU_undump()
Dlapi.c1001 LClosure *f = clLvalue(L->top - 1); /* get newly created function */ in lua_load()
1208 LClosure *f = clLvalue(fi); in aux_upvalue()
1257 static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) { in getupvalref()
1258 LClosure *f; in getupvalref()
1289 LClosure *f1; in lua_upvaluejoin()
Dlvm.c610 static LClosure *getcached (Proto *p, UpVal **encup, StkId base) { in getcached()
611 LClosure *c = p->cache; in getcached()
637 LClosure *ncl = luaF_newLclosure(L, nup); in pushclosure()
788 LClosure *cl; in luaV_execute()
1287 LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ in luaV_execute()
Dlgc.c514 static lu_mem traverseLclosure (global_State *g, LClosure *cl) { in traverseLclosure()
572 LClosure *cl = gco2lcl(o); in propagatemark()
686 static void freeLclosure (lua_State *L, LClosure *cl) { in freeLclosure()
Dldebug.c559 LClosure *c = ci_func(ci); in getupvalname()
Dlparser.c1626 LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, in luaY_parser()
1630 LClosure *cl = luaF_newLclosure(L, 1); /* create main closure */ in luaY_parser()
Dldo.c767 LClosure *cl; in f_parser()