Lines Matching full:decode
106 unsigned long decode; in pci_device_update_fixed() local
111 /* Turn the size into a decode pattern for the sizing code */ in pci_device_update_fixed()
113 decode = size - 1; in pci_device_update_fixed()
114 decode |= decode >> 1; in pci_device_update_fixed()
115 decode |= decode >> 2; in pci_device_update_fixed()
116 decode |= decode >> 4; in pci_device_update_fixed()
117 decode |= decode >> 8; in pci_device_update_fixed()
118 decode |= decode >> 16; in pci_device_update_fixed()
119 decode++; in pci_device_update_fixed()
120 decode = ~(decode - 1); in pci_device_update_fixed()
122 decode = 0; in pci_device_update_fixed()
132 decode); in pci_device_update_fixed()