Searched refs:__fd (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/tools/include/nolibc/ |
D | types.h | 102 int __fd = (fd); \ 103 if (__fd >= 0) \ 104 __set->fds[__fd / FD_SETIDXMASK] &= \ 105 ~(1U << (__fd & FX_SETBITMASK)); \ 110 int __fd = (fd); \ 111 if (__fd >= 0) \ 112 __set->fds[__fd / FD_SETIDXMASK] |= \ 113 1 << (__fd & FD_SETBITMASK); \ 118 int __fd = (fd); \ 120 if (__fd >= 0) \ [all …]
|
/linux-6.1.9/tools/testing/selftests/bpf/prog_tests/ |
D | tc_bpf.c | 10 #define TEST_DECLARE_OPTS(__fd) \ argument 13 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_f, .prog_fd = __fd); \ 15 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_hf, .handle = 1, .prog_fd = __fd); \ 16 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_pf, .priority = 1, .prog_fd = __fd); \ 17 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_hpf, .handle = 1, .priority = 1, .prog_fd = __fd); \ 21 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_hpfi, .handle = 1, .priority = 1, .prog_fd = __fd, \
|