Lines Matching defs:src2

146  * @src2: The second cpumask.
149 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
155 const struct cpumask *src2)
157 return cpumask_first_and(src1, src2);
260 * @src2: The second input.
266 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
270 const struct cpumask *src2)
272 return cpumask_and((struct cpumask *)dst, src1, src2);
279 * @src2: The second input.
281 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
285 const struct cpumask *src2)
287 cpumask_or((struct cpumask *)dst, src1, src2);
294 * @src2: The second input.
296 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
300 const struct cpumask *src2)
302 cpumask_xor((struct cpumask *)dst, src1, src2);
308 * @src2: The second input.
311 * * true - @src1 and @src2 have the same bits set.
312 * * false - @src1 and @src2 differ in at least one bit.
314 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
316 __bpf_kfunc bool bpf_cpumask_equal(const struct cpumask *src1, const struct cpumask *src2)
318 return cpumask_equal(src1, src2);
324 * @src2: The second input.
327 * * true - @src1 and @src2 have at least one of the same bits set.
328 * * false - @src1 and @src2 don't have any of the same bits set.
330 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
332 __bpf_kfunc bool bpf_cpumask_intersects(const struct cpumask *src1, const struct cpumask *src2)
334 return cpumask_intersects(src1, src2);
340 * @src2: The second cpumask being checked as a superset.
343 * * true - All of the bits of @src1 are set in @src2.
344 * * false - At least one bit in @src1 is not set in @src2.
346 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
348 __bpf_kfunc bool bpf_cpumask_subset(const struct cpumask *src1, const struct cpumask *src2)
350 return cpumask_subset(src1, src2);
414 * @src2: The second cpumask.
421 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
424 const struct cpumask *src2)
426 return cpumask_any_and_distribute(src1, src2);