Home
last modified time | relevance | path

Searched refs:ndev (Results 1 – 7 of 7) sorted by relevance

/external/syslinux/com32/sysdump/
Dpci.c36 unsigned int nbus, ndev, nfunc, maxfunc; in dump_pci() local
48 for (ndev = 0; ndev < MAX_PCI_DEVICES; ndev++) { in dump_pci()
52 a = pci_mkaddr(nbus, ndev, nfunc, 0); in dump_pci()
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
Dpipe_loader.h79 pipe_loader_probe(struct pipe_loader_device **devs, int ndev);
109 pipe_loader_release(struct pipe_loader_device **devs, int ndev);
150 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev);
171 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
Dpipe_loader.c50 pipe_loader_probe(struct pipe_loader_device **devs, int ndev) in pipe_loader_probe() argument
55 n += backends[i](&devs[n], MAX2(0, ndev - n)); in pipe_loader_probe()
61 pipe_loader_release(struct pipe_loader_device **devs, int ndev) in pipe_loader_release() argument
65 for (i = 0; i < ndev; i++) in pipe_loader_release()
Dpipe_loader_drm.c237 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev) in pipe_loader_drm_probe() argument
254 if (j < ndev) { in pipe_loader_drm_probe()
Dpipe_loader_sw.c226 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev) in pipe_loader_sw_probe() argument
230 if (i <= ndev) { in pipe_loader_sw_probe()
/external/syslinux/com32/lib/pci/
Dscan.c458 unsigned int nbus, ndev, nfunc, maxfunc; in pci_scan() local
477 for (ndev = 0; ndev < MAX_PCI_DEVICES; ndev++) { in pci_scan()
482 a = pci_mkaddr(nbus, ndev, nfunc, 0); in pci_scan()
512 bus->slot[ndev] = slot; in pci_scan()
566 unsigned int nbus, ndev, nfunc; in free_pci_domain() local
572 for (ndev = 0; ndev < MAX_PCI_DEVICES; ndev++) { in free_pci_domain()
573 slot = bus->slot[ndev]; in free_pci_domain()
/external/libusb-compat/libusb/
Dcore.c601 struct usb_device *ndev = new_devices; in usb_find_devices() local
603 while (ndev) { in usb_find_devices()
604 if (ndev->devnum == dev->devnum) { in usb_find_devices()
605 LIST_DEL(new_devices, ndev); in usb_find_devices()
606 free(ndev); in usb_find_devices()
610 ndev = ndev->next; in usb_find_devices()