Home
last modified time | relevance | path

Searched refs:_x (Results 1 – 5 of 5) sorted by relevance

/tools/testing/selftests/sched_ext/
A Dscx_test.h100 #define SCX_GT(_x, _y) SCX_FAIL_IF((_x) <= (_y), "Expected %s > %s (%lu > %lu)", \ argument
101 #_x, #_y, (u64)(_x), (u64)(_y))
102 #define SCX_GE(_x, _y) SCX_FAIL_IF((_x) < (_y), "Expected %s >= %s (%lu >= %lu)", \ argument
103 #_x, #_y, (u64)(_x), (u64)(_y))
104 #define SCX_LT(_x, _y) SCX_FAIL_IF((_x) >= (_y), "Expected %s < %s (%lu < %lu)", \ argument
105 #_x, #_y, (u64)(_x), (u64)(_y))
106 #define SCX_LE(_x, _y) SCX_FAIL_IF((_x) > (_y), "Expected %s <= %s (%lu <= %lu)", \ argument
107 #_x, #_y, (u64)(_x), (u64)(_y))
109 #_x, #_y, (u64)(_x), (u64)(_y))
110 #define SCX_ASSERT(_x) SCX_FAIL_IF(!(_x), "Expected %s to be true (%lu)", \ argument
[all …]
/tools/lib/bpf/
A Dusdt.bpf.h249 #define ___bpf_usdt_args1(x) ___bpf_usdt_args0(), ({ long _x; bpf_usdt_arg(ctx, 0, &_x); _x; })
250 …__bpf_usdt_args2(x, args...) ___bpf_usdt_args1(args), ({ long _x; bpf_usdt_arg(ctx, 1, &_x); _x; })
251 …__bpf_usdt_args3(x, args...) ___bpf_usdt_args2(args), ({ long _x; bpf_usdt_arg(ctx, 2, &_x); _x; })
252 …__bpf_usdt_args4(x, args...) ___bpf_usdt_args3(args), ({ long _x; bpf_usdt_arg(ctx, 3, &_x); _x; })
253 …__bpf_usdt_args5(x, args...) ___bpf_usdt_args4(args), ({ long _x; bpf_usdt_arg(ctx, 4, &_x); _x; })
254 …__bpf_usdt_args6(x, args...) ___bpf_usdt_args5(args), ({ long _x; bpf_usdt_arg(ctx, 5, &_x); _x; })
255 …__bpf_usdt_args7(x, args...) ___bpf_usdt_args6(args), ({ long _x; bpf_usdt_arg(ctx, 6, &_x); _x; })
256 …__bpf_usdt_args8(x, args...) ___bpf_usdt_args7(args), ({ long _x; bpf_usdt_arg(ctx, 7, &_x); _x; })
257 …__bpf_usdt_args9(x, args...) ___bpf_usdt_args8(args), ({ long _x; bpf_usdt_arg(ctx, 8, &_x); _x; })
258 …_bpf_usdt_args10(x, args...) ___bpf_usdt_args9(args), ({ long _x; bpf_usdt_arg(ctx, 9, &_x); _x; })
[all …]
/tools/testing/selftests/riscv/hwprobe/
A Dhwprobe.h8 # define le32_bswap(_x) \ argument
9 ((((_x) & 0x000000ffU) << 24) | \
10 (((_x) & 0x0000ff00U) << 8) | \
11 (((_x) & 0x00ff0000U) >> 8) | \
12 (((_x) & 0xff000000U) >> 24))
14 # define le32_bswap(_x) (_x) argument
/tools/testing/selftests/sparc64/drivers/
A Dadi-test.c68 #define RDTICK(_x) \ argument
69 asm volatile(" rd %%tick, %0\n" : "=r" (_x))
/tools/testing/selftests/seccomp/
A Dseccomp_bpf.c1221 #define FILTER_ALLOC(_x) \ in FIXTURE_SETUP() argument
1222 self->_x.filter = malloc(sizeof(_x##_insns)); \ in FIXTURE_SETUP()
1223 ASSERT_NE(NULL, self->_x.filter); \ in FIXTURE_SETUP()
1224 memcpy(self->_x.filter, &_x##_insns, sizeof(_x##_insns)); \ in FIXTURE_SETUP()
1225 self->_x.len = (unsigned short)ARRAY_SIZE(_x##_insns) in FIXTURE_SETUP()
1236 #define FILTER_FREE(_x) if (self->_x.filter) free(self->_x.filter) in FIXTURE_TEARDOWN() argument

Completed in 16 milliseconds