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