Home
last modified time | relevance | path

Searched refs:test_2_result (Results 1 – 3 of 3) sorted by relevance

/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dstruct_ops_module.c11 int test_2_result = 0; variable
23 test_2_result = a + b; in BPF_PROG()
29 test_2_result = a + b + 3; in BPF_PROG()
43 test_2_result = a * b; in BPF_PROG()
/linux-6.12.1/tools/bpf/bpftool/Documentation/
Dbpftool-gen.rst248 int test_2_result = 0;
256 test_2_result = a + b;
323 int test_2_result;
370 printf("test_2_result: %d\n", skel->bss->test_2_result);
398 test_2_result: 17
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/
Dtest_struct_ops_module.c52 ASSERT_EQ(skel->bss->test_2_result, expected_test_2_result, "test_2_result"); in attach_ops_and_check()