Searched refs:testbit (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.h | 84 #define testbit(x,b) testbits(x, bitmask(b)) macro 101 #define isblack(x) testbit((x)->gch.marked, BLACKBIT) 105 #define isold(x) testbit((x)->gch.marked, OLDBIT)
|
H A D | lgc.c | 65 #define isfinalized(x) testbit(gch(x)->marked, FINALIZEDBIT) 854 lua_assert(testbit(gch(curr)->marked, SEPARATED)); in separatetobefnz() 874 if (testbit(gch(o)->marked, SEPARATED) || /* obj. is already separated... */ in luaC_checkfinalizer() 1111 while (!testbit(statesmask, g->gcstate)) in luaC_runtilstate()
|
/freebsd/contrib/lua/src/ |
H A D | lgc.h | 67 #define testbit(x,b) testbits(x, bitmask(b)) macro 88 #define isblack(x) testbit((x)->marked, BLACKBIT) 92 #define tofinalize(x) testbit((x)->marked, FINALIZEDBIT)
|
H A D | ltests.c | 539 assert(!testbit(o->marked, TESTBIT)); in checkgraylist() 591 assert(testbit(o->marked, TESTBIT)); in incifingray()
|
H A D | lgc.c | 1654 while (!testbit(statesmask, g->gcstate)) in luaC_runtilstate()
|