Lines Matching refs:src1
139 __bpf_kfunc u32 bpf_cpumask_first_and(const struct cpumask *src1, in bpf_cpumask_first_and() argument
142 return cpumask_first_and(src1, src2); in bpf_cpumask_first_and()
254 const struct cpumask *src1, in bpf_cpumask_and() argument
257 return cpumask_and((struct cpumask *)dst, src1, src2); in bpf_cpumask_and()
269 const struct cpumask *src1, in bpf_cpumask_or() argument
272 cpumask_or((struct cpumask *)dst, src1, src2); in bpf_cpumask_or()
284 const struct cpumask *src1, in bpf_cpumask_xor() argument
287 cpumask_xor((struct cpumask *)dst, src1, src2); in bpf_cpumask_xor()
301 __bpf_kfunc bool bpf_cpumask_equal(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_equal() argument
303 return cpumask_equal(src1, src2); in bpf_cpumask_equal()
317 __bpf_kfunc bool bpf_cpumask_intersects(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_intersects() argument
319 return cpumask_intersects(src1, src2); in bpf_cpumask_intersects()
333 __bpf_kfunc bool bpf_cpumask_subset(const struct cpumask *src1, const struct cpumask *src2) in bpf_cpumask_subset() argument
335 return cpumask_subset(src1, src2); in bpf_cpumask_subset()
408 __bpf_kfunc u32 bpf_cpumask_any_and_distribute(const struct cpumask *src1, in bpf_cpumask_any_and_distribute() argument
411 return cpumask_any_and_distribute(src1, src2); in bpf_cpumask_any_and_distribute()