Home
last modified time | relevance | path

Searched refs:testbits (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlgc.h79 #define testbits(x,m) ((x) & (m)) macro
84 #define testbit(x,b) testbits(x, bitmask(b))
100 #define iswhite(x) testbits((x)->gch.marked, WHITEBITS)
103 (!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT)))
H A Dlgc.c741 if (testbits(marked, tostop)) in sweeplist()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlgc.h29 #define testbits(x,m) ((x) & (m)) macro
34 #define testbit(x,b) testbits(x, bitmask(b))
37 #define test2bits(x,b1,b2) testbits(x, (bit2mask(b1, b2)))