Lines Matching refs:a

26 	int a;  member
29 long a; member
34 int a; member
39 u64 a; member
48 bpf_testmod_test_struct_arg_1(struct bpf_testmod_struct_arg_2 a, int b, int c) { in bpf_testmod_test_struct_arg_1() argument
49 bpf_testmod_test_struct_arg_result = a.a + a.b + b + c; in bpf_testmod_test_struct_arg_1()
54 bpf_testmod_test_struct_arg_2(int a, struct bpf_testmod_struct_arg_2 b, int c) { in bpf_testmod_test_struct_arg_2() argument
55 bpf_testmod_test_struct_arg_result = a + b.a + b.b + c; in bpf_testmod_test_struct_arg_2()
60 bpf_testmod_test_struct_arg_3(int a, int b, struct bpf_testmod_struct_arg_2 c) { in bpf_testmod_test_struct_arg_3() argument
61 bpf_testmod_test_struct_arg_result = a + b + c.a + c.b; in bpf_testmod_test_struct_arg_3()
66 bpf_testmod_test_struct_arg_4(struct bpf_testmod_struct_arg_1 a, int b, in bpf_testmod_test_struct_arg_4() argument
68 bpf_testmod_test_struct_arg_result = a.a + b + c + d + e.a + e.b; in bpf_testmod_test_struct_arg_4()
79 bpf_testmod_test_struct_arg_6(struct bpf_testmod_struct_arg_3 *a) { in bpf_testmod_test_struct_arg_6() argument
80 bpf_testmod_test_struct_arg_result = a->b[0]; in bpf_testmod_test_struct_arg_6()
85 bpf_testmod_test_struct_arg_7(u64 a, void *b, short c, int d, void *e, in bpf_testmod_test_struct_arg_7() argument
88 bpf_testmod_test_struct_arg_result = a + (long)b + c + d + in bpf_testmod_test_struct_arg_7()
89 (long)e + f.a + f.b; in bpf_testmod_test_struct_arg_7()
94 bpf_testmod_test_struct_arg_8(u64 a, void *b, short c, int d, void *e, in bpf_testmod_test_struct_arg_8() argument
97 bpf_testmod_test_struct_arg_result = a + (long)b + c + d + in bpf_testmod_test_struct_arg_8()
98 (long)e + f.a + f.b + g; in bpf_testmod_test_struct_arg_8()
103 bpf_testmod_test_arg_ptr_to_struct(struct bpf_testmod_struct_arg_1 *a) { in bpf_testmod_test_arg_ptr_to_struct() argument
104 bpf_testmod_test_struct_arg_result = a->a; in bpf_testmod_test_arg_ptr_to_struct()
143 int a; member
159 return arg->a; in bpf_testmod_test_btf_type_tag_user_1()
164 return arg->p->a; in bpf_testmod_test_btf_type_tag_user_2()
169 return arg->a; in bpf_testmod_test_btf_type_tag_percpu_1()
174 return arg->p->a; in bpf_testmod_test_btf_type_tag_percpu_2()
209 noinline int bpf_testmod_fentry_test1(int a) in bpf_testmod_fentry_test1() argument
211 return a + 1; in bpf_testmod_fentry_test1()
214 noinline int bpf_testmod_fentry_test2(int a, u64 b) in bpf_testmod_fentry_test2() argument
216 return a + b; in bpf_testmod_fentry_test2()
219 noinline int bpf_testmod_fentry_test3(char a, int b, u64 c) in bpf_testmod_fentry_test3() argument
221 return a + b + c; in bpf_testmod_fentry_test3()
224 noinline int bpf_testmod_fentry_test7(u64 a, void *b, short c, int d, in bpf_testmod_fentry_test7() argument
227 return a + (long)b + c + d + (long)e + f + g; in bpf_testmod_fentry_test7()
230 noinline int bpf_testmod_fentry_test11(u64 a, void *b, short c, int d, in bpf_testmod_fentry_test11() argument
235 return a + (long)b + c + d + (long)e + f + g + h + i + j + k; in bpf_testmod_fentry_test11()
329 noinline int bpf_fentry_shadow_test(int a) in bpf_fentry_shadow_test() argument
331 return a + 2; in bpf_fentry_shadow_test()
354 __bpf_kfunc u64 bpf_kfunc_call_test1(struct sock *sk, u32 a, u64 b, u32 c, u64 d) in bpf_kfunc_call_test1() argument
356 return a + b + c + d; in bpf_kfunc_call_test1()
359 __bpf_kfunc int bpf_kfunc_call_test2(struct sock *sk, u32 a, u32 b) in bpf_kfunc_call_test2() argument
361 return a + b; in bpf_kfunc_call_test2()
369 __bpf_kfunc long noinline bpf_kfunc_call_test4(signed char a, short b, int c, long d) in bpf_kfunc_call_test4() argument
374 return (long)a + (long)b + (long)c + d; in bpf_kfunc_call_test4()
378 .a = 42,
526 extern int bpf_fentry_test1(int a);