Searched refs:LClosure (Results 1 – 12 of 12) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lfunc.h | 17 #define sizeLclosure(n) (cast_int(offsetof(LClosure, upvals)) + \ 52 LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nupvals); 53 LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
|
A D | lundump.h | 30 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
|
A D | lfunc.c | 35 LClosure *luaF_newLclosure (lua_State *L, int nupvals) { in luaF_newLclosure() 37 LClosure *c = gco2lcl(o); in luaF_newLclosure() 48 void luaF_initupvals (lua_State *L, LClosure *cl) { in luaF_initupvals()
|
A D | lobject.h | 598 { TValue *io = (obj); LClosure *x_ = (x); \ 641 typedef struct LClosure { struct 645 } LClosure; argument 650 LClosure l;
|
A D | lparser.h | 167 LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
|
A D | lundump.c | 311 LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { in luaU_undump() 313 LClosure *cl; in luaU_undump()
|
A D | lapi.c | 1089 LClosure *f = clLvalue(s2v(L->top - 1)); /* get newly created function */ in lua_load() 1361 LClosure *f = clLvalue(fi); in aux_upvalue() 1409 static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) { in getupvalref() 1411 LClosure *f; in getupvalref() 1447 LClosure *f1; in lua_upvaluejoin()
|
A D | lgc.c | 598 static int traverseLclosure (global_State *g, LClosure *cl) { in traverseLclosure() 773 LClosure *cl = gco2lcl(o); in freeobj()
|
A D | ldebug.c | 666 LClosure *c = ci_func(ci); in getupvalname()
|
A D | lvm.c | 792 LClosure *ncl = luaF_newLclosure(L, nup); in pushclosure() 1130 LClosure *cl; in luaV_execute()
|
A D | ldo.c | 928 LClosure *cl; in f_parser()
|
A D | lparser.c | 1931 LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, in luaY_parser() 1935 LClosure *cl = luaF_newLclosure(L, 1); /* create main closure */ in luaY_parser()
|
Completed in 27 milliseconds