Lines Matching defs:src1p

239 static inline unsigned int cpumask_any_and_distribute(const struct cpumask *src1p,
242 return cpumask_first_and(src1p, src2p);
251 unsigned int cpumask_any_and_distribute(const struct cpumask *src1p,
257 * cpumask_next_and - get the next cpu in *src1p & *src2p
259 * @src1p: the first cpumask pointer
265 unsigned int cpumask_next_and(int n, const struct cpumask *src1p,
271 return find_next_and_bit(cpumask_bits(src1p), cpumask_bits(src2p),
559 * cpumask_and - *dstp = *src1p & *src2p
561 * @src1p: the first input
567 const struct cpumask *src1p,
570 return bitmap_and(cpumask_bits(dstp), cpumask_bits(src1p),
575 * cpumask_or - *dstp = *src1p | *src2p
577 * @src1p: the first input
580 static inline void cpumask_or(struct cpumask *dstp, const struct cpumask *src1p,
583 bitmap_or(cpumask_bits(dstp), cpumask_bits(src1p),
588 * cpumask_xor - *dstp = *src1p ^ *src2p
590 * @src1p: the first input
594 const struct cpumask *src1p,
597 bitmap_xor(cpumask_bits(dstp), cpumask_bits(src1p),
602 * cpumask_andnot - *dstp = *src1p & ~*src2p
604 * @src1p: the first input
610 const struct cpumask *src1p,
613 return bitmap_andnot(cpumask_bits(dstp), cpumask_bits(src1p),
618 * cpumask_equal - *src1p == *src2p
619 * @src1p: the first input
624 static inline bool cpumask_equal(const struct cpumask *src1p,
627 return bitmap_equal(cpumask_bits(src1p), cpumask_bits(src2p),
632 * cpumask_or_equal - *src1p | *src2p == *src3p
633 * @src1p: the first input
640 static inline bool cpumask_or_equal(const struct cpumask *src1p,
644 return bitmap_or_equal(cpumask_bits(src1p), cpumask_bits(src2p),
649 * cpumask_intersects - (*src1p & *src2p) != 0
650 * @src1p: the first input
656 static inline bool cpumask_intersects(const struct cpumask *src1p,
659 return bitmap_intersects(cpumask_bits(src1p), cpumask_bits(src2p),
664 * cpumask_subset - (*src1p & ~*src2p) == 0
665 * @src1p: the first input
668 * Return: true if *@src1p is a subset of *@src2p, else returns false
670 static inline bool cpumask_subset(const struct cpumask *src1p,
673 return bitmap_subset(cpumask_bits(src1p), cpumask_bits(src2p),