Home | History | Annotate | Download | only in linux

Lines Matching refs:src2

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.
209 const unsigned long *src2, size_t nbits)
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.
227 const unsigned long *src2, size_t nbits)
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.
245 const unsigned long *src2, size_t nbits)
251 *dst++ = *src1++ | *src2++;