Lines Matching defs:val
142 uint8_t val;
146 val = pci_mech1_getb(bus, device, function, reg);
149 return (val);
155 uint16_t val;
159 val = pci_mech1_getw(bus, device, function, reg);
162 return (val);
168 uint32_t val;
172 val = pci_mech1_getl(bus, device, function, reg);
175 return (val);
179 pci_neptune_putb(int bus, int device, int function, int reg, uint8_t val)
183 pci_mech1_putb(bus, device, function, reg, val);
189 pci_neptune_putw(int bus, int device, int function, int reg, uint16_t val)
193 pci_mech1_putw(bus, device, function, reg, val);
199 pci_neptune_putl(int bus, int device, int function, int reg, uint32_t val)
203 pci_mech1_putl(bus, device, function, reg, val);