Lines Matching defs:src2p

240 						      const struct cpumask *src2p)
242 return cpumask_first_and(src1p, src2p);
252 const struct cpumask *src2p);
257 * cpumask_next_and - get the next cpu in *src1p & *src2p
260 * @src2p: the second cpumask pointer
266 const struct cpumask *src2p)
271 return find_next_and_bit(cpumask_bits(src1p), cpumask_bits(src2p),
559 * cpumask_and - *dstp = *src1p & *src2p
562 * @src2p: the second input
568 const struct cpumask *src2p)
571 cpumask_bits(src2p), small_cpumask_bits);
575 * cpumask_or - *dstp = *src1p | *src2p
578 * @src2p: the second input
581 const struct cpumask *src2p)
584 cpumask_bits(src2p), small_cpumask_bits);
588 * cpumask_xor - *dstp = *src1p ^ *src2p
591 * @src2p: the second input
595 const struct cpumask *src2p)
598 cpumask_bits(src2p), small_cpumask_bits);
602 * cpumask_andnot - *dstp = *src1p & ~*src2p
605 * @src2p: the second input
611 const struct cpumask *src2p)
614 cpumask_bits(src2p), small_cpumask_bits);
618 * cpumask_equal - *src1p == *src2p
620 * @src2p: the second input
625 const struct cpumask *src2p)
627 return bitmap_equal(cpumask_bits(src1p), cpumask_bits(src2p),
632 * cpumask_or_equal - *src1p | *src2p == *src3p
634 * @src2p: the second input
641 const struct cpumask *src2p,
644 return bitmap_or_equal(cpumask_bits(src1p), cpumask_bits(src2p),
649 * cpumask_intersects - (*src1p & *src2p) != 0
651 * @src2p: the second input
657 const struct cpumask *src2p)
659 return bitmap_intersects(cpumask_bits(src1p), cpumask_bits(src2p),
664 * cpumask_subset - (*src1p & ~*src2p) == 0
666 * @src2p: the second input
668 * Return: true if *@src1p is a subset of *@src2p, else returns false
671 const struct cpumask *src2p)
673 return bitmap_subset(cpumask_bits(src1p), cpumask_bits(src2p),