Lines Matching refs:src1
201 * bitmap_and(dst, src1, src2, nbits)
203 * Set dst to be the bitwise AND of src1 and src2, all bitmaps
205 * nbits. Any pair of {dst, src1, src2} may be aliases.
208 bitmap_and(unsigned long *dst, const unsigned long *src1,
215 *dst++ = *src1++ & *src2++;
219 * bitmap_andnot(dst, src1, src2, nbits)
221 * Set dst to be the bitwise AND of src1 and ~src2, all bitmaps
223 * nbits. Any pair of {dst, src1, src2} may be aliases.
226 bitmap_andnot(unsigned long *dst, const unsigned long *src1,
233 *dst++ = *src1++ & ~*src2++;
237 * bitmap_or(dst, src1, src2, nbits)
239 * Set dst to be the bitwise inclusive-OR of src1 and src2, all
241 * past nbits. Any pair of {dst, src1, src2} may be aliases.
244 bitmap_or(unsigned long *dst, const unsigned long *src1,
251 *dst++ = *src1++ | *src2++;