Lines Matching defs:c
2 /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */
45 int BPF_PROG2(test_struct_arg_1, struct bpf_testmod_struct_arg_2, a, int, b, int, c)
50 t1_c = c;
55 int BPF_PROG2(test_struct_arg_2, struct bpf_testmod_struct_arg_2, a, int, b, int, c, int, ret)
65 /* c */
74 int BPF_PROG2(test_struct_arg_3, int, a, struct bpf_testmod_struct_arg_2, b, int, c)
79 t2_c = c;
84 int BPF_PROG2(test_struct_arg_4, int, a, struct bpf_testmod_struct_arg_2, b, int, c, int, ret)
91 int BPF_PROG2(test_struct_arg_5, int, a, int, b, struct bpf_testmod_struct_arg_2, c)
95 t3_c_a = c.a;
96 t3_c_b = c.b;
101 int BPF_PROG2(test_struct_arg_6, int, a, int, b, struct bpf_testmod_struct_arg_2, c, int, ret)
109 int, c, int, d, struct bpf_testmod_struct_arg_2, e)
113 t4_c = c;
122 int, c, int, d, struct bpf_testmod_struct_arg_2, e, int, ret)
149 int BPF_PROG2(test_union_arg_1, union bpf_testmod_union_arg_1, a, int, b, int, c)
153 ut1_c = c;