Lines Matching refs:bitmap1
21 void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1,
28 dst[k] = bitmap1[k] | bitmap2[k];
60 bool __bitmap_and(unsigned long *dst, const unsigned long *bitmap1,
68 result |= (dst[k] = bitmap1[k] & bitmap2[k]);
70 result |= (dst[k] = bitmap1[k] & bitmap2[k] &
75 bool __bitmap_equal(const unsigned long *bitmap1,
80 if (bitmap1[k] != bitmap2[k])
84 if ((bitmap1[k] ^ bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))
90 bool __bitmap_intersects(const unsigned long *bitmap1,
95 if (bitmap1[k] & bitmap2[k])
99 if ((bitmap1[k] & bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))