Home
last modified time | relevance | path

Searched refs:lua_longassert (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/contrib/openzfs/module/lua/
H A Dllimits.h60 #define lua_longassert(c) { if (!(c)) lua_assert(0); } macro
64 #define lua_longassert(c) ((void)0) macro
H A Dlobject.h177 lua_longassert(!iscollectable(obj) || \
H A Dlgc.c70 lua_longassert(!iscollectable(obj) || righttt(obj))
/freebsd/contrib/lua/src/
H A Dllimits.h112 #define lua_longassert(c) ((c) ? (void)0 : lua_assert(0)) macro
116 #define lua_longassert(c) ((void)0) macro
H A Dlobject.h107 ((void)L, lua_longassert(!iscollectable(obj) || \
H A Dltests.c1744 lua_longassert((s == NULL && s1 == NULL) || strcmp(s, s1) == 0); in runC()