Home
last modified time | relevance | path

Searched refs:src1 (Results 1 – 1 of 1) sorted by relevance

/tools/include/linux/
Dbitmap.h74 static inline void bitmap_or(unsigned long *dst, const unsigned long *src1, in bitmap_or() argument
78 *dst = *src1 | *src2; in bitmap_or()
80 __bitmap_or(dst, src1, src2, nbits); in bitmap_or()
143 static inline int bitmap_and(unsigned long *dst, const unsigned long *src1, in bitmap_and() argument
147 return (*dst = *src1 & *src2 & BITMAP_LAST_WORD_MASK(nbits)) != 0; in bitmap_and()
148 return __bitmap_and(dst, src1, src2, nbits); in bitmap_and()