Lines Matching refs:off
47 pci_cfgacc_get8(dev_info_t *rcdip, uint16_t bdf, uint16_t off)
51 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 1, B_FALSE, 0);
57 pci_cfgacc_put8(dev_info_t *rcdip, uint16_t bdf, uint16_t off, uint8_t data)
61 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 1, B_TRUE, data);
66 pci_cfgacc_get16(dev_info_t *rcdip, uint16_t bdf, uint16_t off)
70 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 2, B_FALSE, 0);
76 pci_cfgacc_put16(dev_info_t *rcdip, uint16_t bdf, uint16_t off, uint16_t data)
80 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 2, B_TRUE, data);
85 pci_cfgacc_get32(dev_info_t *rcdip, uint16_t bdf, uint16_t off)
89 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 4, B_FALSE, 0);
95 pci_cfgacc_put32(dev_info_t *rcdip, uint16_t bdf, uint16_t off, uint32_t data)
99 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 4, B_TRUE, data);
104 pci_cfgacc_get64(dev_info_t *rcdip, uint16_t bdf, uint16_t off)
108 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 8, B_FALSE, 0);
114 pci_cfgacc_put64(dev_info_t *rcdip, uint16_t bdf, uint16_t off, uint64_t data)
118 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 8, B_TRUE, data);