Searched refs:Closure (Results 1 – 14 of 14) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lfunc.h | 22 LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems); 23 LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems);
|
D | lfunc.c | 23 Closure *luaF_newCclosure (lua_State *L, int n) { in luaF_newCclosure() 24 Closure *c = &luaC_newobj(L, LUA_TCCL, sizeCclosure(n), NULL, 0)->cl; in luaF_newCclosure() 30 Closure *luaF_newLclosure (lua_State *L, int n) { in luaF_newLclosure() 31 Closure *c = &luaC_newobj(L, LUA_TLCL, sizeLclosure(n), NULL, 0)->cl; in luaF_newLclosure()
|
D | lundump.h | 14 LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
|
D | lparser.h | 115 LUAI_FUNC Closure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
|
D | ldebug.c | 178 static void funcinfo (lua_Debug *ar, Closure *cl) { in funcinfo() 196 static void collectvalidlines (lua_State *L, Closure *f) { in collectvalidlines() 216 Closure *f, CallInfo *ci) { in auxgetinfo() 268 Closure *cl; in lua_getinfo()
|
D | lundump.c | 206 Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name) in luaU_undump() 209 Closure* cl; in luaU_undump()
|
D | lobject.h | 475 union Closure *cache; /* last created closure with this prototype */ 530 typedef union Closure { union 533 } Closure; typedef
|
D | lstate.h | 189 union Closure cl;
|
D | lgc.h | 152 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c);
|
D | lvm.c | 379 static Closure *getcached (Proto *p, UpVal **encup, StkId base) { in getcached() 380 Closure *c = p->cache; in getcached() 406 Closure *ncl = luaF_newLclosure(L, nup); in pushclosure() 835 Closure *ncl = getcached(p, cl->upvals, base); /* cached closure */ in luaV_execute()
|
D | ldo.c | 642 Closure *cl; in f_parser()
|
D | lparser.c | 1618 Closure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, in luaY_parser() 1622 Closure *cl = luaF_newLclosure(L, 1); /* create main closure */ in luaY_parser()
|
D | lgc.c | 172 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c) { in luaC_barrierproto_()
|
D | lapi.c | 561 Closure *cl; in lua_pushcclosure()
|