| /devicemodel/include/ |
| A D | xhcireg.h | 284 #define XREAD1(sc, what, a) \ argument 286 (a) + (sc)->sc_##what##_off) 287 #define XREAD2(sc, what, a) \ argument 289 (a) + (sc)->sc_##what##_off) 290 #define XREAD4(sc, what, a) \ argument 292 (a) + (sc)->sc_##what##_off) 293 #define XWRITE1(sc, what, a, x) \ argument 295 (a) + (sc)->sc_##what##_off, (x)) 296 #define XWRITE2(sc, what, a, x) \ argument 298 (a) + (sc)->sc_##what##_off, (x)) [all …]
|
| A D | macros.h | 40 #define _CONCAT_(a, b) a ## b argument 41 #define __CONCAT(a, b) _CONCAT_(a, b) argument
|
| A D | usb.h | 502 #define UE_GET_DIR(a) ((a) & 0x80) argument 503 #define UE_SET_DIR(a, d) ((a) | (((d)&1) << 7)) argument 511 #define UE_GET_ADDR(a) ((a) & UE_ADDR) argument 520 #define UE_GET_XFERTYPE(a) ((a) & UE_XFERTYPE) argument 525 #define UE_GET_ISO_TYPE(a) ((a) & UE_ISO_TYPE) argument 530 #define UE_GET_ISO_USAGE(a) ((a) & UE_ISO_USAGE) argument
|
| A D | types.h | 24 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) argument
|
| /devicemodel/core/ |
| A D | mem.c | 66 mmio_rb_range_compare(struct mmio_rb_range *a, struct mmio_rb_range *b) in mmio_rb_range_compare() argument 68 if (a->mr_end < b->mr_base) in mmio_rb_range_compare() 70 else if (a->mr_base > b->mr_end) in mmio_rb_range_compare()
|
| /devicemodel/log/ |
| A D | disk_logger.c | 44 #define INDEX_AFTER(a, b) ((short int)b - (short int)a < 0) argument
|
| /devicemodel/ |
| A D | README.rst | 8 Service VM and post-launched User VMs. It is a component that is used in
|
| /devicemodel/hw/platform/ |
| A D | hpet.c | 86 #define vhpet_tmrarg(v, n) (&(v)->timer[n].tmrlst[(v)->timer[n].tmridx].a) 129 struct vhpet_timer_arg a; member 333 vhpet_timer_handler(void *a, uint64_t nexp) in vhpet_timer_handler() argument 342 arg = a; in vhpet_timer_handler() 996 arg = &vhpet->timer[i].tmrlst[j].a; in vhpet_init()
|
| /devicemodel/hw/pci/virtio/ |
| A D | virtio_mei.c | 55 #define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument 56 UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) 63 uint32_t a; in guid_parse() local 83 a = strtoul(str + 0, NULL, 16); in guid_parse() 100 *guid = GUID_INIT(a, b, c, in guid_parse()
|
| A D | virtio_net.c | 237 ether_aton(const char *a, struct ether_addr *e) in ether_aton() argument 242 if(!dm_strtoui(a, &cp, 16, &o0) && in ether_aton()
|
| /devicemodel/bios/ |
| A D | changelog_ovmf.txt | 99 - GvtGopDxe: Fix crash if failed to get a valid mode
|
| /devicemodel/hw/pci/ |
| A D | xhci.c | 180 #define FIELD_REPLACE(a, b, m, s) (((a) & ~((m) << (s))) | \ argument 182 #define FIELD_COPY(a, b, m, s) (((a) & ~((m) << (s))) | \ argument 452 #define XHCI_GADDR(xdev, a) paddr_guest2host((xdev)->dev->vmctx, (a), \ argument 453 XHCI_PADDR_SZ - ((a) & (XHCI_PADDR_SZ-1)))
|