Lines Matching defs:L
99 #define LUAI_THROW(L,c) longjmp(&(c)->b) argument
100 #define LUAI_TRY(L,c,a) if (setjmp(&(c)->b) == 0) { a } argument
114 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
115 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
123 #define LUAI_THROW(L,c) throw(c) argument
124 #define LUAI_TRY(L,c,a) \ argument
130 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
131 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
136 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
137 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
155 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj()
182 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw()
209 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected()
226 static void correctstack (lua_State *L, TValue *oldstack) { in correctstack()
245 void luaD_reallocstack (lua_State *L, int newsize) { in luaD_reallocstack()
259 void luaD_growstack (lua_State *L, int n) { in luaD_growstack()
278 static int stackinuse (lua_State *L) { in stackinuse()
289 void luaD_shrinkstack (lua_State *L) { in luaD_shrinkstack()
301 void luaD_hook (lua_State *L, int event, int line) { in luaD_hook()
328 static void callhook (lua_State *L, CallInfo *ci) { in callhook()
341 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) { in adjust_varargs()
358 static StkId tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
374 #define next_ci(L) (L->ci = (L->ci->next ? L->ci->next : luaE_extendCI(L))) argument
380 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
446 int luaD_poscall (lua_State *L, StkId firstResult) { in luaD_poscall()
477 void luaD_call (lua_State *L, StkId func, int nResults, int allowyield) { in luaD_call()
497 static void finishCcall (lua_State *L) { in finishCcall()
522 static void unroll (lua_State *L, void *ud) { in unroll()
540 static CallInfo *findpcall (lua_State *L) { in findpcall()
550 static int recover (lua_State *L, int status) { in recover()
574 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { in resume_error()
585 static void resume_cb (lua_State *L, void *ud) { in resume_cb()
624 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume()
656 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()
684 int luaD_pcall (lua_State *L, Pfunc func, void *u, in luaD_pcall()
720 static void checkmode (lua_State *L, const char *mode, const char *x) { in checkmode()
729 static void f_parser (lua_State *L, void *ud) { in f_parser()
746 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, in luaD_protectedparser()