Lines Matching +defs:L +defs:c

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 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj()
110 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw()
136 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected()
158 static void correctstack (lua_State *L, TValue *oldstack) { in correctstack()
177 void luaD_reallocstack (lua_State *L, int newsize) { in luaD_reallocstack()
191 void luaD_growstack (lua_State *L, int n) { in luaD_growstack()
210 static int stackinuse (lua_State *L) { in stackinuse()
221 void luaD_shrinkstack (lua_State *L) { in luaD_shrinkstack()
237 void luaD_inctop (lua_State *L) { in luaD_inctop()
250 void luaD_hook (lua_State *L, int event, int line) { in luaD_hook()
277 static void callhook (lua_State *L, CallInfo *ci) { in callhook()
290 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) { in adjust_varargs()
312 static void tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
326 #define next_ci(L) (L->ci = (L->ci->next ? L->ci->next : luaE_extendCI(L))) argument
330 #define checkstackp(L,n,p) \ argument
344 int luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
411 static int moveresults (lua_State *L, const TValue *firstResult, StkId res, in moveresults()
453 int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, int nres) { in luaD_poscall()
478 static void stackerror (lua_State *L) { in stackerror()
492 void luaD_call (lua_State *L, StkId func, int nResults) { in luaD_call()
504 void luaD_callnoyield (lua_State *L, StkId func, int nResults) { in luaD_callnoyield()
515 static void finishCcall (lua_State *L, int status) { in finishCcall()
547 static void unroll (lua_State *L, void *ud) { in unroll()
565 static CallInfo *findpcall (lua_State *L) { in findpcall()
580 static int recover (lua_State *L, int status) { in recover()
602 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { in resume_error()
617 static void resume (lua_State *L, void *ud) { in resume()
654 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume()
685 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable()
690 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
719 int luaD_pcall (lua_State *L, Pfunc func, void *u, in luaD_pcall()
755 static void checkmode (lua_State *L, const char *mode, const char *x) { in checkmode()
764 static void f_parser (lua_State *L, void *ud) { in f_parser()
767 int c = zgetc(p->z); /* read first character */ in f_parser() local
781 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, in luaD_protectedparser()