Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlgc.h84 #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 Dlgc.c65 #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()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlgc.h34 #define testbit(x,b) testbits(x, bitmask(b)) macro
66 #define isblack(x) testbit((x)->gch.marked, BLACKBIT)
H A Dlgc.c43 #define isfinalized(u) testbit((u)->marked, FINALIZEDBIT)
355 lua_assert(testbit(h->marked, VALUEWEAKBIT) || in cleartable()
356 testbit(h->marked, KEYWEAKBIT)); in cleartable()
357 if (testbit(h->marked, VALUEWEAKBIT)) { in cleartable()
415 lua_assert(!isdead(g, curr) || testbit(curr->gch.marked, FIXEDBIT)); in sweeplist()