Home | History | Annotate | Download | only in hw

Lines Matching full:opaque

53 static void smc91c111_save(QEMUFile *f, void *opaque)
55 smc91c111_state *s = opaque;
90 static int smc91c111_load(QEMUFile *f, void *opaque, int version_id)
92 smc91c111_state *s = opaque;
325 static void smc91c111_writeb(void *opaque, target_phys_addr_t offset,
328 smc91c111_state *s = (smc91c111_state *)opaque;
497 static uint32_t smc91c111_readb(void *opaque, target_phys_addr_t offset)
499 smc91c111_state *s = (smc91c111_state *)opaque;
638 static void smc91c111_writew(void *opaque, target_phys_addr_t offset,
641 smc91c111_writeb(opaque, offset, value & 0xff);
642 smc91c111_writeb(opaque, offset + 1, value >> 8);
645 static void smc91c111_writel(void *opaque, target_phys_addr_t offset,
651 smc91c111_writew(opaque, offset, value & 0xffff);
652 smc91c111_writew(opaque, offset + 2, value >> 16);
655 static uint32_t smc91c111_readw(void *opaque, target_phys_addr_t offset)
658 val = smc91c111_readb(opaque, offset);
659 val |= smc91c111_readb(opaque, offset + 1) << 8;
663 static uint32_t smc91c111_readl(void *opaque, target_phys_addr_t offset)
666 val = smc91c111_readw(opaque, offset);
667 val |= smc91c111_readw(opaque, offset + 2) << 16;
673 smc91c111_state *s = vc->opaque;
684 smc91c111_state *s = vc->opaque;
774 smc91c111_state *s = vc->opaque;