Searched refs:LClosure (Results 1 – 12 of 12) sorted by relevance
/netbsd-src/external/mit/lua/dist/src/ |
H A D | lfunc.h | 19 #define sizeLclosure(n) (cast_int(offsetof(LClosure, upvals)) + \ 54 LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nupvals); 55 LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
|
H A D | lfunc.c | 39 LClosure *luaF_newLclosure (lua_State *L, int nupvals) { in luaF_newLclosure() 41 LClosure *c = gco2lcl(o); in luaF_newLclosure() 52 void luaF_initupvals (lua_State *L, LClosure *cl) { in luaF_initupvals()
|
H A D | lundump.h | 32 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
|
H A D | lobject.h | 623 { TValue *io = (obj); LClosure *x_ = (x); \ 668 typedef struct LClosure { struct 672 } LClosure; argument 677 LClosure l;
|
H A D | lparser.h | 171 LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
|
H A D | lundump.c | 319 LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { in luaU_undump() 321 LClosure *cl; in luaU_undump()
|
H A D | lapi.c | 1106 LClosure *f = clLvalue(s2v(L->top.p - 1)); /* get new function */ in lua_load() 1379 LClosure *f = clLvalue(fi); in aux_upvalue() 1427 static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) { in getupvalref() 1429 LClosure *f; in getupvalref() 1465 LClosure *f1; in lua_upvaluejoin()
|
H A D | lgc.c | 607 static int traverseLclosure (global_State *g, LClosure *cl) { in traverseLclosure() 782 LClosure *cl = gco2lcl(o); in freeobj()
|
H A D | ldebug.c | 686 LClosure *c = ci_func(ci); in getupvalname()
|
H A D | lvm.c | 841 LClosure *ncl = luaF_newLclosure(L, nup); 1231 LClosure *cl;
|
H A D | lparser.c | 1956 LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, in luaY_parser() 1960 LClosure *cl = luaF_newLclosure(L, 1); /* create main closure */ in luaY_parser()
|
H A D | ldo.c | 993 LClosure *cl; in f_parser()
|