Lines Matching full:src2
130 * @src2: The second cpumask.
133 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
136 const struct cpumask *src2) in bpf_cpumask_first_and() argument
138 return cpumask_first_and(src1, src2); in bpf_cpumask_first_and()
241 * @src2: The second input.
247 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
251 const struct cpumask *src2) in bpf_cpumask_and() argument
253 return cpumask_and((struct cpumask *)dst, src1, src2); in bpf_cpumask_and()
260 * @src2: The second input.
262 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
266 const struct cpumask *src2) in bpf_cpumask_or() argument
268 cpumask_or((struct cpumask *)dst, src1, src2); in bpf_cpumask_or()
275 * @src2: The second input.
277 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
281 const struct cpumask *src2) in bpf_cpumask_xor() argument
283 cpumask_xor((struct cpumask *)dst, src1, src2); in bpf_cpumask_xor()
289 * @src2: The second input.
292 * * true - @src1 and @src2 have the same bits set.
293 * * false - @src1 and @src2 differ in at least one bit.
295 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
297 __bpf_kfunc bool bpf_cpumask_equal(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_equal() argument
299 return cpumask_equal(src1, src2); in bpf_cpumask_equal()
305 * @src2: The second input.
308 * * true - @src1 and @src2 have at least one of the same bits set.
309 * * false - @src1 and @src2 don't have any of the same bits set.
311 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
313 __bpf_kfunc bool bpf_cpumask_intersects(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_intersects() argument
315 return cpumask_intersects(src1, src2); in bpf_cpumask_intersects()
321 * @src2: The second cpumask being checked as a superset.
324 * * true - All of the bits of @src1 are set in @src2.
325 * * false - At least one bit in @src1 is not set in @src2.
327 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
329 __bpf_kfunc bool bpf_cpumask_subset(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_subset() argument
331 return cpumask_subset(src1, src2); in bpf_cpumask_subset()
395 * @src2: The second cpumask.
402 * struct bpf_cpumask pointers may be safely passed to @src1 and @src2.
405 const struct cpumask *src2) in bpf_cpumask_any_and_distribute() argument
407 return cpumask_any_and_distribute(src1, src2); in bpf_cpumask_any_and_distribute()