Searched refs:BLOOM_WIDTH (Results 1 – 2 of 2) sorted by relevance
209 #define BLOOM_WIDTH 128 macro211 #define BLOOM_WIDTH 64 macro213 #define BLOOM_WIDTH 32 macro222 #define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1)))))223 #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
754 #define BLOOM_WIDTH 128 macro756 #define BLOOM_WIDTH 64 macro758 #define BLOOM_WIDTH 32 macro767 #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))783 MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \ in make_bloom_mask()