Lines Matching refs:a
11 int BPF_PROG(test1, int a, int ret) in BPF_PROG() argument
13 test1_result = a == 1 && ret == 2; in BPF_PROG()
19 int BPF_PROG(test2, int a, __u64 b, int ret) in BPF_PROG() argument
21 test2_result = a == 2 && b == 3 && ret == 5; in BPF_PROG()
27 int BPF_PROG(test3, char a, int b, __u64 c, int ret) in BPF_PROG() argument
29 test3_result = a == 4 && b == 5 && c == 6 && ret == 15; in BPF_PROG()
35 int BPF_PROG(test4, void *a, char b, int c, __u64 d, int ret) in BPF_PROG() argument
37 test4_result = a == (void *)7 && b == 8 && c == 9 && d == 10 && in BPF_PROG()
44 int BPF_PROG(test5, __u64 a, void *b, short c, int d, __u64 e, int ret) in BPF_PROG() argument
46 test5_result = a == 11 && b == (void *)12 && c == 13 && d == 14 && in BPF_PROG()
53 int BPF_PROG(test6, __u64 a, void *b, short c, int d, void *e, __u64 f, int ret) in BPF_PROG() argument
55 test6_result = a == 16 && b == (void *)17 && c == 18 && d == 19 && in BPF_PROG()
61 struct bpf_fentry_test *a; member
77 if (arg->a == 0) in BPF_PROG()