Lines Matching refs:tail
42 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_fill() local
46 if (tail) in bitmap_fill()
47 addr[BIT_WORD(size)] = BITMAP_LAST_WORD_MASK(tail); in bitmap_fill()
54 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_full() local
62 if (tail) { in bitmap_full()
63 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_full()
75 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_empty() local
83 if (tail) { in bitmap_empty()
84 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_empty()
208 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_weight() local
215 if (tail) { in bitmap_weight()
216 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_weight()
228 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_equal() local
236 if (tail) { in bitmap_equal()
237 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_equal()
250 const unsigned tail = size & (BITS_PER_LONG - 1); in bitmap_subset() local
258 if (tail) { in bitmap_subset()
259 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_subset()
272 const unsigned tail = size & (BITS_PER_LONG - 1); in bitmap_intersects() local
279 if (tail) { in bitmap_intersects()
280 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_intersects()
335 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_from_arr32() local
350 dst[end] &= BITMAP_LAST_WORD_MASK(tail); in bitmap_from_arr32()
402 const unsigned int tail = size & (BITS_PER_LONG - 1); in bitmap_shift_right() local
403 const unsigned long mask = BITMAP_LAST_WORD_MASK(tail); in bitmap_shift_right()