Searched refs:___res (Results 1 – 3 of 3) sorted by relevance
| /linux-6.15/include/asm-generic/ |
| H A D | div64.h | 76 uint64_t ___res, ___x, ___t, ___m, ___n = (n); \ 91 ___res = (___m & 0xffffffff) * (___x & 0xffffffff); \ 92 ___t = (___m & 0xffffffff) * (___x >> 32) + (___res >> 32); \ 93 ___res = (___m >> 32) * (___x >> 32) + (___t >> 32); \ 95 ___res = (___res + (___t >> 32)) / ___p; \ 98 if (___res != ___x / ___b) { \ 121 ___res = __arch_xprod_64(___m, ___n, ___bias); \ 123 ___res /= ___p; \
|
| /linux-6.15/tools/testing/selftests/bpf/ |
| H A D | test_progs.h | 364 long long ___res = (res); \ 365 bool ___ok = ___res == 0; \ 367 ___res, errno); \ 373 long long ___res = (res); \ 374 bool ___ok = ___res < 0; \ 381 const void *___res = (ptr); \ 382 bool ___ok = !___res; \ 389 const void *___res = (ptr); \ 390 int ___err = libbpf_get_error(___res); \ 398 const void *___res = (ptr); \ [all …]
|
| /linux-6.15/include/linux/ |
| H A D | arm-smccc.h | 507 struct arm_smccc_res *___res = res; \ 512 struct arm_smccc_res *___res = res; \ 519 struct arm_smccc_res *___res = res; \ 528 struct arm_smccc_res *___res = res; \ 572 if (___res) \ 573 *___res = (typeof(*___res)){r0, r1, r2, r3}; \ 621 if (___res) \ 622 ___res->a0 = SMCCC_RET_NOT_SUPPORTED; \ 659 #define __fail_smccc_1_2(___res) \ argument 661 if (___res) \ [all …]
|