Lines Matching defs:c
2 /* Copyright (c) 2020 Facebook */
61 int c;
80 bpf_testmod_test_struct_arg_1(struct bpf_testmod_struct_arg_2 a, int b, int c) {
81 bpf_testmod_test_struct_arg_result = a.a + a.b + b + c;
86 bpf_testmod_test_struct_arg_2(int a, struct bpf_testmod_struct_arg_2 b, int c) {
87 bpf_testmod_test_struct_arg_result = a + b.a + b.b + c;
92 bpf_testmod_test_struct_arg_3(int a, int b, struct bpf_testmod_struct_arg_2 c) {
93 bpf_testmod_test_struct_arg_result = a + b + c.a + c.b;
99 int c, int d, struct bpf_testmod_struct_arg_2 e) {
100 bpf_testmod_test_struct_arg_result = a.a + b + c + d + e.a + e.b;
117 bpf_testmod_test_struct_arg_7(u64 a, void *b, short c, int d, void *e,
120 bpf_testmod_test_struct_arg_result = a + (long)b + c + d +
126 bpf_testmod_test_struct_arg_8(u64 a, void *b, short c, int d, void *e,
129 bpf_testmod_test_struct_arg_result = a + (long)b + c + d +
135 bpf_testmod_test_struct_arg_9(u64 a, void *b, short c, int d, void *e, char f,
138 bpf_testmod_test_struct_arg_result = a + (long)b + c + d + (long)e +
139 f + g + h.a + h.b + h.c + h.d + i;
144 bpf_testmod_test_union_arg_1(union bpf_testmod_union_arg_1 a, int b, int c)
146 bpf_testmod_test_struct_arg_result = a.arg.a + b + c;
401 noinline int bpf_testmod_fentry_test3(char a, int b, u64 c)
403 return a + b + c;
406 noinline int bpf_testmod_fentry_test7(u64 a, void *b, short c, int d,
409 return a + (long)b + c + d + (long)e + f + g;
412 noinline int bpf_testmod_fentry_test11(u64 a, void *b, short c, int d,
417 return a + (long)b + c + d + (long)e + f + g + h + i + j + k;
691 __bpf_kfunc u64 bpf_kfunc_call_test1(struct sock *sk, u32 a, u64 b, u32 c, u64 d)
693 return a + b + c + d;
706 __bpf_kfunc long noinline bpf_kfunc_call_test4(signed char a, short b, int c, long d)
709 * b and c on platforms where this is required (e.g. s390x).
711 return (long)a + (long)b + (long)c + d;