Home
last modified time | relevance | path

Searched refs:Closure (Results 1 – 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlfunc.h22 LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems);
23 LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems);
Dlfunc.c23 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()
Dlundump.h14 LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
Dlparser.h115 LUAI_FUNC Closure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
Dldebug.c178 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()
Dlundump.c206 Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name) in luaU_undump()
209 Closure* cl; in luaU_undump()
Dlobject.h475 union Closure *cache; /* last created closure with this prototype */
530 typedef union Closure { union
533 } Closure; typedef
Dlstate.h189 union Closure cl;
Dlgc.h152 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c);
Dlvm.c379 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()
Dldo.c642 Closure *cl; in f_parser()
Dlparser.c1618 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()
Dlgc.c172 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c) { in luaC_barrierproto_()
Dlapi.c561 Closure *cl; in lua_pushcclosure()