Lines Matching defs:c
2 /* Copyright (c) 2017 Facebook
123 /* tools/testing/selftests/bpf/prog_tests/xdp_do_redirect.c:%MAX_PKT_SIZE
532 noinline int bpf_fentry_test3(char a, int b, u64 c)
534 return a + b + c;
537 noinline int bpf_fentry_test4(void *a, char b, int c, u64 d)
539 return (long)a + b + c + d;
542 noinline int bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
544 return a + (long)b + c + d + e;
547 noinline int bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
549 return a + (long)b + c + d + (long)e + f;
587 __bpf_kfunc int bpf_modify_return_test2(int a, int *b, short c, int d,
591 return a + *b + c + d + (long)e + f + g;
612 int c;