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()
115 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw()
138 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected()
165 static void relstack (lua_State *L) { in relstack()
182 static void correctstack (lua_State *L) { in correctstack()
212 int luaD_reallocstack (lua_State *L, int newsize, int raiseerror) { in luaD_reallocstack()
242 int luaD_growstack (lua_State *L, int n, int raiseerror) { in luaD_growstack()
276 static int stackinuse (lua_State *L) { in stackinuse()
300 void luaD_shrinkstack (lua_State *L) { in luaD_shrinkstack()
315 void luaD_inctop (lua_State *L) { in luaD_inctop()
328 void luaD_hook (lua_State *L, int event, int line, in luaD_hook()
369 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall()
387 static void rethook (lua_State *L, CallInfo *ci, int nres) { in rethook()
412 StkId luaD_tryfuncTM (lua_State *L, StkId func) { in luaD_tryfuncTM()
433 l_sinline void moveresults (lua_State *L, StkId res, int nres, int wanted) { in moveresults()
485 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall()
499 #define next_ci(L) (L->ci->next ? L->ci->next : luaE_extendCI(L)) argument
502 l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, in prepCallInfo()
516 l_sinline int precallC (lua_State *L, StkId func, int nresults, in precallC()
543 int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, in luaD_pretailcall()
588 CallInfo *luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
628 l_sinline void ccall (lua_State *L, StkId func, int nResults, l_uint32 inc) { in ccall()
646 void luaD_call (lua_State *L, StkId func, int nResults) { in luaD_call()
654 void luaD_callnoyield (lua_State *L, StkId func, int nResults) { in luaD_callnoyield()
675 static int finishpcallk (lua_State *L, CallInfo *ci) { in finishpcallk()
708 static void finishCcall (lua_State *L, CallInfo *ci) { in finishCcall()
736 static void unroll (lua_State *L, void *ud) { in unroll()
754 static CallInfo *findpcall (lua_State *L) { in findpcall()
769 static int resume_error (lua_State *L, const char *msg, int narg) { in resume_error()
785 static void resume (lua_State *L, void *ud) { in resume()
820 static int precover (lua_State *L, int status) { in precover()
831 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume()
866 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable()
871 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
914 static void closepaux (lua_State *L, void *ud) { in closepaux()
924 int luaD_closeprotected (lua_State *L, ptrdiff_t level, int status) { in luaD_closeprotected()
946 int luaD_pcall (lua_State *L, Pfunc func, void *u, in luaD_pcall()
979 static void checkmode (lua_State *L, const char *mode, const char *x) { in checkmode()
988 static void f_parser (lua_State *L, void *ud) { in f_parser()
1005 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, in luaD_protectedparser()