Lines Matching refs:value
75 vmw_shmem_st8(PCIDevice *d, hwaddr addr, uint8_t value) in vmw_shmem_st8() argument
77 VMW_SHPRN("SHMEM store8: %" PRIx64 " (value 0x%X)", addr, value); in vmw_shmem_st8()
78 pci_dma_write(d, addr, &value, 1); in vmw_shmem_st8()
92 vmw_shmem_st16(PCIDevice *d, hwaddr addr, uint16_t value) in vmw_shmem_st16() argument
94 VMW_SHPRN("SHMEM store16: %" PRIx64 " (value 0x%X)", addr, value); in vmw_shmem_st16()
95 value = cpu_to_le16(value); in vmw_shmem_st16()
96 pci_dma_write(d, addr, &value, 2); in vmw_shmem_st16()
110 vmw_shmem_st32(PCIDevice *d, hwaddr addr, uint32_t value) in vmw_shmem_st32() argument
112 VMW_SHPRN("SHMEM store32: %" PRIx64 " (value 0x%X)", addr, value); in vmw_shmem_st32()
113 value = cpu_to_le32(value); in vmw_shmem_st32()
114 pci_dma_write(d, addr, &value, 4); in vmw_shmem_st32()
128 vmw_shmem_st64(PCIDevice *d, hwaddr addr, uint64_t value) in vmw_shmem_st64() argument
130 VMW_SHPRN("SHMEM store64: %" PRIx64 " (value %" PRIx64 ")", addr, value); in vmw_shmem_st64()
131 value = cpu_to_le64(value); in vmw_shmem_st64()
132 pci_dma_write(d, addr, &value, 8); in vmw_shmem_st64()