Searched refs:amt (Results 1 - 6 of 6) sorted by relevance
/drivers/video/riva/ |
H A D | nv_driver.c | 161 u32 amt; local 230 pci_read_config_dword(dev, 0x7C, &amt); 232 memlen = (((amt >> 6) & 31) + 1) * 1024; 235 pci_read_config_dword(dev, 0x84, &amt); 237 memlen = (((amt >> 4) & 127) + 1) * 1024;
|
H A D | riva_hw.c | 2110 u32 amt; local 2123 pci_read_config_dword(dev, 0x7C, &amt); 2125 chip->RamAmountKBytes = (((amt >> 6) & 31) + 1) * 1024; 2128 pci_read_config_dword(dev, 0x84, &amt); 2130 chip->RamAmountKBytes = (((amt >> 4) & 127) + 1) * 1024;
|
/drivers/video/nvidia/ |
H A D | nv_setup.c | 269 u32 amt; local 271 pci_read_config_dword(dev, 0x7c, &amt); 272 par->RamAmountKBytes = (((amt >> 6) & 31) + 1) * 1024; 274 u32 amt; local 276 pci_read_config_dword(dev, 0x84, &amt); 277 par->RamAmountKBytes = (((amt >> 4) & 127) + 1) * 1024;
|
/drivers/infiniband/hw/qib/ |
H A D | qib_init.c | 1348 unsigned amt; local 1354 amt = ALIGN(dd->rcvhdrcnt * dd->rcvhdrentsize * 1359 &dd->pcidev->dev, amt, &rcd->rcvhdrq_phys, 1365 amt, rcd->ctxt); 1384 rcd->rcvhdrq_size = amt; 1399 dma_free_coherent(&dd->pcidev->dev, amt, rcd->rcvhdrq,
|
/drivers/infiniband/hw/ipath/ |
H A D | ipath_driver.c | 1775 int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize * local 1779 &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys, 1785 amt, pd->port_port); 1799 dma_free_coherent(&dd->pcidev->dev, amt, 1811 pd->port_rcvhdrq_size = amt; 1815 amt >> PAGE_SHIFT, pd->port_rcvhdrq,
|
/drivers/tty/ |
H A D | n_tty.c | 1597 static inline int input_available_p(struct tty_struct *tty, int amt) argument 1603 } else if (tty->read_cnt >= (amt ? amt : 1))
|
Completed in 175 milliseconds