Lines Matching +defs:val +defs:test
98 * as to whether this code is inside the test for 8086/84c4.
139 uint32_t test;
144 test = pci_mech1_getl(0, ncDevNo, 0, PCI_CONF_VENID);
145 } while (test != 0x84c48086UL);
158 test = pci_mech1_getl(0, ncDevNo, 0, PCI_82454_RW_CONTROL);
159 } while (test == 0x84c48086UL);
183 uint8_t val;
187 val = pci_mech1_getb(bus, device, function, reg);
190 return (val);
196 uint16_t val;
200 val = pci_mech1_getw(bus, device, function, reg);
203 return (val);
209 uint32_t val;
213 val = pci_mech1_getl(bus, device, function, reg);
216 return (val);
220 pci_orion_putb(int bus, int device, int function, int reg, uint8_t val)
224 pci_mech1_putb(bus, device, function, reg, val);
230 pci_orion_putw(int bus, int device, int function, int reg, uint16_t val)
234 pci_mech1_putw(bus, device, function, reg, val);
240 pci_orion_putl(int bus, int device, int function, int reg, uint32_t val)
244 pci_mech1_putl(bus, device, function, reg, val);