Home
last modified time | relevance | path

Searched refs:_a (Results 1 – 10 of 10) sorted by relevance

/qemu/include/qemu/
H A Dosdep.h395 #define MIN_INTERNAL(a, b, _a, _b) \ argument
397 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
398 _a < _b ? _a : _b; \
402 MIN_INTERNAL((a), (b), MAKE_IDENTFIER(_a), MAKE_IDENTFIER(_b))
404 #define MAX_INTERNAL(a, b, _a, _b) \ argument
406 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
407 _a > _b ? _a : _b; \
411 MAX_INTERNAL((a), (b), MAKE_IDENTFIER(_a), MAKE_IDENTFIER(_b))
437 #define MIN_NON_ZERO_INTERNAL(a, b, _a, _b) \ argument
439 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
[all …]
/qemu/include/hw/usb/
H A Ddwc2-regs.h430 #define DPTXFSIZN(_a) HSOTG_REG(0x104 + (((_a) - 1) * 4)) argument
532 #define DIEPCTL(_a) HSOTG_REG(0x900 + ((_a) * 0x20)) argument
535 #define DOEPCTL(_a) HSOTG_REG(0xB00 + ((_a) * 0x20)) argument
582 #define DIEPINT(_a) HSOTG_REG(0x908 + ((_a) * 0x20)) argument
583 #define DOEPINT(_a) HSOTG_REG(0xB08 + ((_a) * 0x20)) argument
624 #define DIEPTSIZ(_a) HSOTG_REG(0x910 + ((_a) * 0x20)) argument
625 #define DOEPTSIZ(_a) HSOTG_REG(0xB10 + ((_a) * 0x20)) argument
641 #define DIEPDMA(_a) HSOTG_REG(0x914 + ((_a) * 0x20)) argument
642 #define DOEPDMA(_a) HSOTG_REG(0xB14 + ((_a) * 0x20)) argument
644 #define DTXFSTS(_a) HSOTG_REG(0x918 + ((_a) * 0x20)) argument
[all …]
/qemu/include/hw/
H A Dloader.h343 #define rom_add_file_fixed(_f, _a, _i) \ argument
344 rom_add_file(_f, NULL, _a, _i, false, NULL, NULL)
345 #define rom_add_blob_fixed(_f, _b, _l, _a) \ argument
346 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, NULL, true)
351 #define rom_add_file_fixed_as(_f, _a, _i, _as) \ argument
352 rom_add_file(_f, NULL, _a, _i, false, NULL, _as)
353 #define rom_add_blob_fixed_as(_f, _b, _l, _a, _as) \ argument
354 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, _as, true)
/qemu/hw/xen/
H A Dxen_pt.h20 #define XEN_PT_ERR(d, _f, _a...) xen_pt_log(d, "%s: Error: "_f, __func__, ##_a) argument
23 # define XEN_PT_LOG(d, _f, _a...) xen_pt_log(d, "%s: " _f, __func__, ##_a) argument
24 # define XEN_PT_WARN(d, _f, _a...) \ argument
25 xen_pt_log(d, "%s: Warning: "_f, __func__, ##_a)
27 # define XEN_PT_LOG(d, _f, _a...) argument
28 # define XEN_PT_WARN(d, _f, _a...) argument
/qemu/scripts/qapi/
H A Dpylintrc38 good-names-rgxs=^[_a-z][_a-z0-9]?$
/qemu/tests/qemu-iotests/
H A D21537 *[^-_a-zA-Z0-9/]*)
H A D19740 *[^-_a-zA-Z0-9/]*)
/qemu/target/s390x/tcg/
H A Dinsn-format.h.inc19 /* ??? The PoO does not call out subtypes _a and _b for RR, as it does
/qemu/qga/
H A Dcommands-posix.c869 static int compare_uint(const void *_a, const void *_b) in compare_uint() argument
871 unsigned int a = *(unsigned int *)_a; in compare_uint()
/qemu/target/ppc/
H A Dint_helper.c2024 uint8_t _a = (_e >> 15) ? 0xff : 0; \
2029 result.u32[i] = (_a << 24) | (_r << 16) | (_g << 8) | _b; \