Searched refs:RHS (Results 1 – 2 of 2) sorted by relevance
| /linux/tools/testing/selftests/bpf/ |
| A D | bpf_experimental.h | 266 __bpf_assert_check(LHS, op, RHS); \ 275 if (sizeof(typeof(RHS)) == 8) { \ 276 const typeof(RHS) rhs_var = (RHS); \ 308 typeof(RHS) __rhs = (RHS); \ 330 #define bpf_cmp_unlikely(LHS, OP, RHS) _bpf_cmp(LHS, OP, RHS, true) argument 334 #define bpf_cmp_likely(LHS, OP, RHS) \ argument 338 ret = _bpf_cmp(LHS, !=, RHS, false); \ 340 ret = _bpf_cmp(LHS, ==, RHS, false); \ 342 ret = _bpf_cmp(LHS, >, RHS, false); \ 344 ret = _bpf_cmp(LHS, >=, RHS, false); \ [all …]
|
| /linux/tools/perf/util/ |
| A D | expr.y | 130 #define BINARY_OP(RESULT, OP, LHS, RHS) \ 131 if (!compute_ids || (is_const(LHS.val) && is_const(RHS.val))) { \ 133 assert(RHS.ids == NULL); \ 134 if (isnan(LHS.val) || isnan(RHS.val)) { \ 137 RESULT.val = LHS.val OP RHS.val; \ 141 RESULT = union_expr(LHS, RHS); \
|
Completed in 8 milliseconds