Home
last modified time | relevance | path

Searched refs:LClosure (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/mit/lua/dist/src/
H A Dlfunc.h19 #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 Dlfunc.c39 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 Dlundump.h32 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
H A Dlobject.h623 { TValue *io = (obj); LClosure *x_ = (x); \
668 typedef struct LClosure { struct
672 } LClosure; argument
677 LClosure l;
H A Dlparser.h171 LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
H A Dlundump.c319 LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { in luaU_undump()
321 LClosure *cl; in luaU_undump()
H A Dlapi.c1106 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 Dlgc.c607 static int traverseLclosure (global_State *g, LClosure *cl) { in traverseLclosure()
782 LClosure *cl = gco2lcl(o); in freeobj()
H A Dldebug.c686 LClosure *c = ci_func(ci); in getupvalname()
H A Dlvm.c841 LClosure *ncl = luaF_newLclosure(L, nup);
1231 LClosure *cl;
H A Dlparser.c1956 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 Dldo.c993 LClosure *cl; in f_parser()