Lines Matching full:src1

131  * @src1: The first cpumask.
135 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
137 __bpf_kfunc u32 bpf_cpumask_first_and(const struct cpumask *src1, in bpf_cpumask_first_and() argument
140 return cpumask_first_and(src1, src2); in bpf_cpumask_first_and()
242 * @src1: The first input.
249 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
252 const struct cpumask *src1, in bpf_cpumask_and() argument
255 return cpumask_and((struct cpumask *)dst, src1, src2); in bpf_cpumask_and()
261 * @src1: The first input.
264 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
267 const struct cpumask *src1, in bpf_cpumask_or() argument
270 cpumask_or((struct cpumask *)dst, src1, src2); in bpf_cpumask_or()
276 * @src1: The first input.
279 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
282 const struct cpumask *src1, in bpf_cpumask_xor() argument
285 cpumask_xor((struct cpumask *)dst, src1, src2); in bpf_cpumask_xor()
290 * @src1: The first input.
294 * * true - @src1 and @src2 have the same bits set.
295 * * false - @src1 and @src2 differ in at least one bit.
297 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
299 __bpf_kfunc bool bpf_cpumask_equal(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_equal() argument
301 return cpumask_equal(src1, src2); in bpf_cpumask_equal()
306 * @src1: The first input.
310 * * true - @src1 and @src2 have at least one of the same bits set.
311 * * false - @src1 and @src2 don't have any of the same bits set.
313 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
315 __bpf_kfunc bool bpf_cpumask_intersects(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_intersects() argument
317 return cpumask_intersects(src1, src2); in bpf_cpumask_intersects()
322 * @src1: The first cpumask being checked as a subset.
326 * * true - All of the bits of @src1 are set in @src2.
327 * * false - At least one bit in @src1 is not set in @src2.
329 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
331 __bpf_kfunc bool bpf_cpumask_subset(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_subset() argument
333 return cpumask_subset(src1, src2); in bpf_cpumask_subset()
396 * @src1: The first cpumask.
404 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
406 __bpf_kfunc u32 bpf_cpumask_any_and_distribute(const struct cpumask *src1, in bpf_cpumask_any_and_distribute() argument
409 return cpumask_any_and_distribute(src1, src2); in bpf_cpumask_any_and_distribute()