Searched refs:BLOOM_FILTER_SHIFT (Results 1 - 1 of 1) sorted by relevance

/linux-master/mm/
H A Dvmscan.c2663 #define BLOOM_FILTER_SHIFT 15 macro
2672 u32 hash = hash_ptr(item, BLOOM_FILTER_SHIFT * 2);
2674 BUILD_BUG_ON(BLOOM_FILTER_SHIFT * 2 > BITS_PER_TYPE(u32));
2676 key[0] = hash & (BIT(BLOOM_FILTER_SHIFT) - 1);
2677 key[1] = hash >> BLOOM_FILTER_SHIFT;
2722 bitmap_clear(filter, 0, BIT(BLOOM_FILTER_SHIFT));
2726 filter = bitmap_zalloc(BIT(BLOOM_FILTER_SHIFT),

Completed in 118 milliseconds