/qemu/include/qemu/ |
H A D | osdep.h | 403 #define MIN_INTERNAL(a, b, _a, _b) \ argument 405 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \ 406 _a < _b ? _a : _b; \ 410 MIN_INTERNAL((a), (b), MAKE_IDENTIFIER(_a), MAKE_IDENTIFIER(_b)) 412 #define MAX_INTERNAL(a, b, _a, _b) \ argument 414 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \ 415 _a > _b ? _a : _b; \ 419 MAX_INTERNAL((a), (b), MAKE_IDENTIFIER(_a), MAKE_IDENTIFIER(_b)) 445 #define MIN_NON_ZERO_INTERNAL(a, b, _a, _b) \ argument 447 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \ [all …]
|
/qemu/include/hw/ |
H A D | loader.h | 328 #define rom_add_blob_fixed(_f, _b, _l, _a) \ argument 329 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, NULL, true) 336 #define rom_add_blob_fixed_as(_f, _b, _l, _a, _as) \ argument 337 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, _as, true)
|
/qemu/target/riscv/insn_trans/ |
H A D | trans_rvvk.c.inc | 73 gen_helper_##OPIVX##_b, \ 89 gen_helper_##NAME##_b, \ 104 gen_helper_##NAME##_b, \ 142 gen_helper_##NAME##_b, \ 162 gen_helper_##NAME##_b, \ 222 gen_helper_##OPIVX##_b, \
|
H A D | trans_rvv.c.inc | 1570 gen_helper_##NAME##_b, gen_helper_##NAME##_h, \ 1648 gen_helper_##NAME##_b, gen_helper_##NAME##_h, \ 1795 gen_helper_##OPIVX##_b, gen_helper_##OPIVX##_h, \ 1863 gen_helper_##NAME##_b, \ 1896 gen_helper_##NAME##_b, \ 1943 gen_helper_##NAME##_b, \ 1976 gen_helper_##NAME##_b, \ 2012 gen_helper_##NAME##_b, gen_helper_##NAME##_h, \ 2063 gen_helper_##NAME##_b, gen_helper_##NAME##_h, \ 2091 gen_helper_##OPIVX##_b, gen_helper_##OPIVX##_h, \ [all …]
|
/qemu/target/s390x/tcg/ |
H A D | insn-format.h.inc | 19 /* ??? The PoO does not call out subtypes _a and _b for RR, as it does
|
/qemu/hw/display/ |
H A D | qxl.c | 56 #define QXL_MODE(_x, _y, _b, _o) \ argument 59 .bits = _b, \ 60 .stride = (_x) * (_b) / 8, \
|
/qemu/qga/ |
H A D | commands-linux.c | 350 static int compare_uint(const void *_a, const void *_b) in compare_uint() argument 353 unsigned int b = *(unsigned int *)_b; in compare_uint()
|
/qemu/target/mips/tcg/ |
H A D | msa_translate.c | 174 gen_func##_b, gen_func##_h, gen_func##_w, gen_func##_d \
|
/qemu/target/ppc/ |
H A D | int_helper.c | 2027 uint8_t _b = _e & 0x1f; \ 2029 result.u32[i] = (_a << 24) | (_r << 16) | (_g << 8) | _b; \
|
/qemu/target/tricore/ |
H A D | op_helper.c | 1618 uint32_t helper_##name ##_b(target_ulong r1, target_ulong r2) \
|
/qemu/target/arm/tcg/ |
H A D | translate-sve.c | 768 gen_helper_##name##_b, gen_helper_##name##_h, \ 866 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
|