Lines Matching refs:uint
7 static uint count_device_list = 0;
42 uint lbus = (uint)bus; in pci_read_config()
43 uint lslot = (uint)slot; in pci_read_config()
44 uint lfunc = ((uint)func) & 7; in pci_read_config()
47 …uint address = (uint)((lbus << 16) | (lslot << 11) | (lfunc << 8) | (offset & 0xfc) | ((uint)0x800… in pci_read_config()
50 uint32_t ret = (uint)(io_in32(PORT_PCI_CONFIG_DATA)); in pci_read_config()
64 uint pci_write_config(uchar bus, uchar slot, uchar func, uchar offset, uint32_t data) in pci_write_config()
66 uint lbus = (uint)bus; in pci_write_config()
67 uint lslot = (uint)slot; in pci_write_config()
68 uint lfunc = ((uint)func) & 7; in pci_write_config()
71 …uint address = (uint)((lbus << 16) | (lslot << 11) | (lfunc << 8) | (offset & 0xfc) | ((uint)0x800… in pci_write_config()