Searched refs:testbits (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.h | 78 #define testbits(x,m) ((x) & (m)) macro 83 #define testbit(x,b) testbits(x, bitmask(b)) 99 #define iswhite(x) testbits((x)->gch.marked, WHITEBITS) 102 (!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT)))
|
H A D | lgc.c | 740 if (testbits(marked, tostop)) in sweeplist()
|
/freebsd/contrib/lua/src/ |
H A D | lgc.h | 62 #define testbits(x,m) ((x) & (m)) macro 67 #define testbit(x,b) testbits(x, bitmask(b)) 87 #define iswhite(x) testbits((x)->marked, WHITEBITS) 90 (!testbits((x)->marked, WHITEBITS | bitmask(BLACKBIT)))
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/ |
H A D | gcc_qadd.c | 39 const doublebits testbits = {.d = testForOverflow}; in __gcc_qadd() local 40 if (((uint32_t)(testbits.x >> 32) & infinityHi) == infinityHi) { in __gcc_qadd()
|
H A D | gcc_qsub.c | 39 const doublebits testbits = {.d = testForOverflow}; in __gcc_qsub() local 40 if (((uint32_t)(testbits.x >> 32) & infinityHi) == infinityHi) { in __gcc_qsub()
|