Lines Matching defs:L

62 #define LUAI_THROW(L,c)		throw(c)  argument
63 #define LUAI_TRY(L,c,a) \ argument
70 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
71 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
77 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
78 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
95 void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) { in luaD_seterrorobj()
119 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw()
142 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected()
169 static void relstack (lua_State *L) { in relstack()
186 static void correctstack (lua_State *L) { in correctstack()
216 int luaD_reallocstack (lua_State *L, int newsize, int raiseerror) { in luaD_reallocstack()
246 int luaD_growstack (lua_State *L, int n, int raiseerror) { in luaD_growstack()
280 static int stackinuse (lua_State *L) { in stackinuse()
304 void luaD_shrinkstack (lua_State *L) { in luaD_shrinkstack()
319 void luaD_inctop (lua_State *L) { in luaD_inctop()
332 void luaD_hook (lua_State *L, int event, int line, in luaD_hook()
373 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall()
391 static void rethook (lua_State *L, CallInfo *ci, int nres) { in rethook()
416 StkId luaD_tryfuncTM (lua_State *L, StkId func) { in luaD_tryfuncTM()
437 l_sinline void moveresults (lua_State *L, StkId res, int nres, int wanted) { in moveresults()
489 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall()
503 #define next_ci(L) (L->ci->next ? L->ci->next : luaE_extendCI(L)) argument
506 l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, in prepCallInfo()
520 l_sinline int precallC (lua_State *L, StkId func, int nresults, in precallC()
547 int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, in luaD_pretailcall()
592 CallInfo *luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
632 l_sinline void ccall (lua_State *L, StkId func, int nResults, l_uint32 inc) { in ccall()
650 void luaD_call (lua_State *L, StkId func, int nResults) { in luaD_call()
658 void luaD_callnoyield (lua_State *L, StkId func, int nResults) { in luaD_callnoyield()
679 static int finishpcallk (lua_State *L, CallInfo *ci) { in finishpcallk()
712 static void finishCcall (lua_State *L, CallInfo *ci) { in finishCcall()
740 static void unroll (lua_State *L, void *ud) { in unroll()
758 static CallInfo *findpcall (lua_State *L) { in findpcall()
773 static int resume_error (lua_State *L, const char *msg, int narg) { in resume_error()
789 static void resume (lua_State *L, void *ud) { in resume()
824 static int precover (lua_State *L, int status) { in precover()
835 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume()
870 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable()
875 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
918 static void closepaux (lua_State *L, void *ud) { in closepaux()
928 int luaD_closeprotected (lua_State *L, ptrdiff_t level, int status) { in luaD_closeprotected()
950 int luaD_pcall (lua_State *L, Pfunc func, void *u, in luaD_pcall()
983 static void checkmode (lua_State *L, const char *mode, const char *x) { in checkmode()
992 static void f_parser (lua_State *L, void *ud) { in f_parser()
1009 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, in luaD_protectedparser()