Lines Matching refs:dst
23 __bitmap_or(unsigned long *dst, const unsigned long *bitmap1, in __bitmap_or() argument
30 dst[k] = bitmap1[k] | bitmap2[k]; in __bitmap_or()
90 static inline void bitmap_zero(unsigned long *dst, int nbits) in bitmap_zero() argument
93 *dst = 0UL; in bitmap_zero()
97 memset(dst, 0, len); in bitmap_zero()
188 static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) in bitmap_fill() argument
191 *dst = ~0UL; in bitmap_fill()
195 memset(dst, 0xff, len); in bitmap_fill()
207 static inline void bitmap_or(unsigned long *dst, const unsigned long *src1, in bitmap_or() argument
211 *dst = *src1 | *src2; in bitmap_or()
213 __bitmap_or(dst, src1, src2, nbits); in bitmap_or()