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()
111 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw()
135 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected()
162 static void relstack (lua_State *L) { in relstack()
179 static void correctstack (lua_State *L) { in correctstack()
200 l_noret luaD_errerr (lua_State *L) { in luaD_errerr()
219 int luaD_reallocstack (lua_State *L, int newsize, int raiseerror) { in luaD_reallocstack()
249 int luaD_growstack (lua_State *L, int n, int raiseerror) { in luaD_growstack()
283 static int stackinuse (lua_State *L) { in stackinuse()
307 void luaD_shrinkstack (lua_State *L) { in luaD_shrinkstack()
322 void luaD_inctop (lua_State *L) { in luaD_inctop()
335 void luaD_hook (lua_State *L, int event, int line, in luaD_hook()
376 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall()
394 static void rethook (lua_State *L, CallInfo *ci, int nres) { in rethook()
419 static StkId tryfuncTM (lua_State *L, StkId func) { in tryfuncTM()
440 l_sinline void moveresults (lua_State *L, StkId res, int nres, int wanted) { in moveresults()
492 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall()
506 #define next_ci(L) (L->ci->next ? L->ci->next : luaE_extendCI(L)) argument
509 l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, in prepCallInfo()
523 l_sinline int precallC (lua_State *L, StkId func, int nresults, in precallC()
550 int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, in luaD_pretailcall()
595 CallInfo *luaD_precall (lua_State *L, StkId func, int nresults) { in luaD_precall()
635 l_sinline void ccall (lua_State *L, StkId func, int nResults, l_uint32 inc) { in ccall()
653 void luaD_call (lua_State *L, StkId func, int nResults) { in luaD_call()
661 void luaD_callnoyield (lua_State *L, StkId func, int nResults) { in luaD_callnoyield()
682 static int finishpcallk (lua_State *L, CallInfo *ci) { in finishpcallk()
715 static void finishCcall (lua_State *L, CallInfo *ci) { in finishCcall()
743 static void unroll (lua_State *L, void *ud) { in unroll()
761 static CallInfo *findpcall (lua_State *L) { in findpcall()
776 static int resume_error (lua_State *L, const char *msg, int narg) { in resume_error()
792 static void resume (lua_State *L, void *ud) { in resume()
831 static int precover (lua_State *L, int status) { in precover()
842 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume()
877 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable()
882 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
925 static void closepaux (lua_State *L, void *ud) { in closepaux()
935 int luaD_closeprotected (lua_State *L, ptrdiff_t level, int status) { in luaD_closeprotected()
957 int luaD_pcall (lua_State *L, Pfunc func, void *u, in luaD_pcall()
990 static void checkmode (lua_State *L, const char *mode, const char *x) { in checkmode()
999 static void f_parser (lua_State *L, void *ud) { in f_parser()
1016 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, in luaD_protectedparser()