Searched refs:WHITEBITS (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lgc.h | 97 #define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT) macro 100 #define iswhite(x) testbits((x)->gch.marked, WHITEBITS) 103 (!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT))) 111 #define otherwhite(g) (g->currentwhite ^ WHITEBITS) 112 #define isdeadm(ow,m) (!(((m) ^ WHITEBITS) & (ow))) 115 #define changewhite(x) ((x)->gch.marked ^= WHITEBITS) 120 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
|
| H A D | lgc.c | 57 #define maskcolors (~(bit2mask(BLACKBIT, OLDBIT) | WHITEBITS)) 61 #define white2gray(x) resetbits(gch(x)->marked, WHITEBITS) 988 g->currentwhite = WHITEBITS; /* this "white" makes all objects look dead */ in luaC_freeallobjects()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lgc.h | 62 #define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT) macro 69 #define otherwhite(g) (g->currentwhite ^ WHITEBITS) 70 #define isdead(g,v) ((v)->gch.marked & otherwhite(g) & WHITEBITS) 72 #define changewhite(x) ((x)->gch.marked ^= WHITEBITS) 77 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
|
| H A D | lgc.c | 32 #define maskmarks cast_byte(~(bitmask(BLACKBIT)|WHITEBITS)) 414 if ((curr->gch.marked ^ WHITEBITS) & deadmask) { /* not dead? */ in sweeplist() 486 g->currentwhite = WHITEBITS | bitmask(SFIXEDBIT); /* mask to collect all elements */ in luaC_freeall()
|