Lines Matching defs:L
58 #define LUAI_THROW(L,c) throw(c) argument
59 #define LUAI_TRY(L,c,a) \ argument
66 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
67 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
73 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
74 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
91 void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) { in luaD_seterrorobj()
114 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw()
141 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected()
164 static void correctstack (lua_State *L, StkId oldstack, StkId newstack) { in correctstack()
185 int luaD_reallocstack (lua_State *L, int newsize, int raiseerror) { in luaD_reallocstack()
209 int luaD_growstack (lua_State *L, int n, int raiseerror) { in luaD_growstack()
235 static int stackinuse (lua_State *L) { in stackinuse()
246 void luaD_shrinkstack (lua_State *L) { in luaD_shrinkstack()
261 void luaD_inctop (lua_State *L) { in luaD_inctop()
274 void luaD_hook (lua_State *L, int event, int line, in luaD_hook()
313 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall()
326 static StkId rethook (lua_State *L, CallInfo *ci, StkId firstres, int nres) { in rethook()
354 void luaD_tryfuncTM (lua_State *L, StkId func) { in luaD_tryfuncTM()
372 static void moveresults (lua_State *L, StkId res, int nres, int wanted) { in moveresults()
414 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall()
424 #define next_ci(L) (L->ci->next ? L->ci->next : luaE_extendCI(L)) argument
432 void luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int narg1) { in luaD_pretailcall()
457 void luaD_call (lua_State *L, StkId func, int nresults) { in luaD_call()
519 void luaD_callnoyield (lua_State *L, StkId func, int nResults) { in luaD_callnoyield()
534 static void finishCcall (lua_State *L, int status) { in finishCcall()
564 static void unroll (lua_State *L, void *ud) { in unroll()
583 static CallInfo *findpcall (lua_State *L) { in findpcall()
598 static int recover (lua_State *L, int status) { in recover()
620 static int resume_error (lua_State *L, const char *msg, int narg) { in resume_error()
636 static void resume (lua_State *L, void *ud) { in resume()
661 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume()
701 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable()
706 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
742 int luaD_pcall (lua_State *L, Pfunc func, void *u, in luaD_pcall()
777 static void checkmode (lua_State *L, const char *mode, const char *x) { in checkmode()
786 static void f_parser (lua_State *L, void *ud) { in f_parser()
803 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, in luaD_protectedparser()