Searched refs:novariant (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lstate.h | 202 check_exp(novariant((o)->gch.tt) == LUA_TSTRING, &((o)->ts)) 209 check_exp(novariant((o)->gch.tt) == LUA_TFUNCTION, &((o)->cl))
|
H A D | lobject.h | 118 #define novariant(x) ((x) & 0x0F) macro 124 #define ttypenv(o) (novariant(rttype(o)))
|
H A D | lgc.c | 213 char *raw = cast(char *, luaM_newobject(L, novariant(tt), sz)); in luaC_newobj()
|
/freebsd/contrib/lua/src/ |
H A D | lstate.h | 374 check_exp(novariant((o)->tt) == LUA_TSTRING, &((cast_u(o))->ts)) 379 check_exp(novariant((o)->tt) == LUA_TFUNCTION, &((cast_u(o))->cl))
|
H A D | lobject.h | 80 #define novariant(t) ((t) & 0x0F) macro 87 #define ttype(o) (novariant(rawtt(o)))
|
H A D | lgc.c | 187 else if (novariant(o->tt) == LUA_TSTRING) { in iscleared() 260 char *p = cast_charp(luaM_newobject(L, novariant(tt), sz)); in luaC_newobjdt()
|
H A D | ltests.c | 315 ttypename(novariant(o->tt)), (void *)o, in printobj()
|