Lines Matching defs:nbits
26 #define BITMAP_LAST_WORD_MASK(nbits) (~0UL >> (-(nbits) & (BITS_PER_LONG - 1))) argument
28 static inline void bitmap_zero(unsigned long *dst, unsigned int nbits) in bitmap_zero()
38 static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) in bitmap_fill()
48 static inline bool bitmap_empty(const unsigned long *src, unsigned int nbits) in bitmap_empty()
56 static inline bool bitmap_full(const unsigned long *src, unsigned int nbits) in bitmap_full()
64 static inline unsigned int bitmap_weight(const unsigned long *src, unsigned int nbits) in bitmap_weight()
72 const unsigned long *src2, unsigned int nbits) in bitmap_or()
84 static inline unsigned long *bitmap_zalloc(int nbits) in bitmap_zalloc()
116 const unsigned long *src2, unsigned int nbits) in bitmap_and()
132 const unsigned long *src2, unsigned int nbits) in bitmap_equal()
144 unsigned int nbits) in bitmap_intersects()