Searched refs:LClosure (Results 1 – 12 of 12) sorted by relevance
/external/lua/src/ |
D | lfunc.h | 17 #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);
|
D | lfunc.c | 33 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()
|
D | lobject.h | 241 { 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;
|
D | lundump.h | 26 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
|
D | lparser.h | 129 LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
|
D | lundump.c | 258 LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { in luaU_undump() 260 LClosure *cl; in luaU_undump()
|
D | lapi.c | 1001 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()
|
D | lvm.c | 610 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()
|
D | lgc.c | 514 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()
|
D | ldebug.c | 559 LClosure *c = ci_func(ci); in getupvalname()
|
D | lparser.c | 1626 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()
|
D | ldo.c | 767 LClosure *cl; in f_parser()
|