Lines Matching refs:a
21 void BPF_PROG(test_2, int a, int b) in BPF_PROG() argument
23 test_2_result = a + b; in BPF_PROG()
27 int BPF_PROG(test_3, int a, int b) in BPF_PROG() argument
29 test_2_result = a + b + 3; in BPF_PROG()
30 return a + b + 3; in BPF_PROG()
41 void BPF_PROG(test_2_v2, int a, int b) in BPF_PROG() argument
43 test_2_result = a * b; in BPF_PROG()
48 void (*test_2)(int a, int b);
60 void (*test_2)(int a, int b);
62 void (*zeroed_op)(int a, int b);
81 void (*test_2)(int *a);