Lines Matching full:opaque
17 static inline uint32_t bitband_addr(void * opaque, uint32_t addr)
21 res = *(uint32_t *)opaque;
27 static uint32_t bitband_readb(void *opaque, target_phys_addr_t offset)
30 cpu_physical_memory_read(bitband_addr(opaque, offset), &v, 1);
34 static void bitband_writeb(void *opaque, target_phys_addr_t offset,
40 addr = bitband_addr(opaque, offset);
50 static uint32_t bitband_readw(void *opaque, target_phys_addr_t offset)
55 addr = bitband_addr(opaque, offset) & ~1;
62 static void bitband_writew(void *opaque, target_phys_addr_t offset,
68 addr = bitband_addr(opaque, offset) & ~1;
79 static uint32_t bitband_readl(void *opaque, target_phys_addr_t offset)
84 addr = bitband_addr(opaque, offset) & ~3;
91 static void bitband_writel(void *opaque, target_phys_addr_t offset,
97 addr = bitband_addr(opaque, offset) & ~3;