Searched refs:testbit (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.h | 83 #define testbit(x,b) testbits(x, bitmask(b)) macro 100 #define isblack(x) testbit((x)->gch.marked, BLACKBIT) 104 #define isold(x) testbit((x)->gch.marked, OLDBIT)
|
H A D | lgc.c | 64 #define isfinalized(x) testbit(gch(x)->marked, FINALIZEDBIT) 853 lua_assert(testbit(gch(curr)->marked, SEPARATED)); in separatetobefnz() 873 if (testbit(gch(o)->marked, SEPARATED) || /* obj. is already separated... */ in luaC_checkfinalizer() 1110 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 | 1652 while (!testbit(statesmask, g->gcstate)) in luaC_runtilstate()
|