Home
last modified time | relevance | path

Searched refs:luai_apicheck (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dllimits.h71 #if !defined(luai_apicheck)
75 #define luai_apicheck(L,e) assert(e) macro
77 #define luai_apicheck(L,e) lua_assert(e) macro
82 #define api_check(l,e,msg) luai_apicheck(l,(e) && msg)
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dllimits.h64 #define api_check luai_apicheck
H A Dluaconf.h379 #define luai_apicheck(L,o) { (void)L; assert(o); } macro
381 #define luai_apicheck(L,o) { (void)L; } macro
H A Dldebug.c239 luai_apicheck(L, ttisfunction(func)); in lua_getinfo()