Lines Matching defs:src1
145 * @src1: The first cpumask.
149 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
154 __bpf_kfunc u32 bpf_cpumask_first_and(const struct cpumask *src1,
157 return cpumask_first_and(src1, src2);
259 * @src1: The first input.
266 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
269 const struct cpumask *src1,
272 return cpumask_and((struct cpumask *)dst, src1, src2);
278 * @src1: The first input.
281 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
284 const struct cpumask *src1,
287 cpumask_or((struct cpumask *)dst, src1, src2);
293 * @src1: The first input.
296 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
299 const struct cpumask *src1,
302 cpumask_xor((struct cpumask *)dst, src1, src2);
307 * @src1: The first 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);
323 * @src1: The first 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);
339 * @src1: The first cpumask being checked as a subset.
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);
413 * @src1: The first cpumask.
421 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
423 __bpf_kfunc u32 bpf_cpumask_any_and_distribute(const struct cpumask *src1,
426 return cpumask_any_and_distribute(src1, src2);