Home
last modified time | relevance | path

Searched refs:bit2mask (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlgc.h31 #define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2)) macro
35 #define set2bits(x,b1,b2) setbits(x, (bit2mask(b1, b2)))
36 #define reset2bits(x,b1,b2) resetbits(x, (bit2mask(b1, b2)))
37 #define test2bits(x,b1,b2) testbits(x, (bit2mask(b1, b2)))
62 #define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT)
H A Dlstate.c153 g->currentwhite = bit2mask(WHITE0BIT, FIXEDBIT); in lua_newstate()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlgc.h81 #define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2)) macro
97 #define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT)
H A Dlstate.c274 g->currentwhite = bit2mask(WHITE0BIT, FIXEDBIT); in lua_newstate()
H A Dlgc.c57 #define maskcolors (~(bit2mask(BLACKBIT, OLDBIT) | WHITEBITS))