Searched refs:LUAI_THROW (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ldo.c | 64 #if !defined(LUAI_THROW) 98 #define LUAI_THROW(L,c) longjmp(&(c)->b) macro 113 #define LUAI_THROW(L,c) longjmp((c)->b, 1) macro 122 #define LUAI_THROW(L,c) throw(c) macro 129 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) macro 135 #define LUAI_THROW(L,c) longjmp((c)->b, 1) macro 184 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()
|
/freebsd/contrib/lua/src/ |
H A D | ldo.c | 53 #if !defined(LUAI_THROW) /* { */ 58 #define LUAI_THROW(L,c) throw(c) macro 66 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) macro 73 #define LUAI_THROW(L,c) longjmp((c)->b, 1) macro 118 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()
|