Searched refs:nextptr (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/powerpc/powermac/ |
H A D | cpcht.c | 218 int ptr, nextptr; in cpcht_configure_htbridge() local 254 nextptr = PCIB_READ_CONFIG(dev, b, s, f, PCIR_CAP_PTR, 1); in cpcht_configure_htbridge() 255 while (nextptr != 0) { in cpcht_configure_htbridge() 256 ptr = nextptr; in cpcht_configure_htbridge() 257 nextptr = PCIB_READ_CONFIG(dev, b, s, f, in cpcht_configure_htbridge()
|
/freebsd/usr.sbin/pciconf/ |
H A D | cap.c | 1027 uint16_t nextptr, len; 1031 nextptr = PCI_EXTCAP_NEXTPTR(val); in ecap_acs() 1035 if (nextptr == 0) in ecap_acs() 1036 nextptr = 0x1000; in ecap_acs() 1037 len = nextptr - ptr; in ecap_acs() 912 uint16_t nextptr, len; ecap_vendor() local
|
/freebsd/contrib/bsnmp/lib/ |
H A D | snmpclient.c | 753 char *nextptr; in snmp_oid_append() local 809 size = strtol(fmt, &nextptr, 10); in snmp_oid_append() 810 if (*nextptr != ')') in snmp_oid_append() 812 fmt = ++nextptr; in snmp_oid_append()
|
/freebsd/usr.sbin/bhyve/ |
H A D | pci_passthru.c | 187 passthru_add_msicap(struct pci_devinst *pi, int msgnum, int nextptr) in passthru_add_msicap() argument 193 pci_populate_msicap(&msicap, msgnum, nextptr); in passthru_add_msicap()
|
H A D | pci_emul.c | 1176 pci_populate_msicap(struct msicap *msicap, int msgnum, int nextptr) in pci_populate_msicap() argument 1186 msicap->nextptr = nextptr; in pci_populate_msicap()
|
/freebsd/sys/dev/pci/ |
H A D | pci.c | 850 int ptr, nextptr, ptrptr; in pci_read_cap() local 863 nextptr = REG(ptrptr, 1); /* sanity check? */ in pci_read_cap() 868 while (nextptr != 0) { in pci_read_cap() 870 if (nextptr > 255) { in pci_read_cap() 872 nextptr); in pci_read_cap() 876 ptr = nextptr; in pci_read_cap() 877 nextptr = REG(ptr + PCICAP_NEXTPTR, 1); in pci_read_cap() 886 if ((nextptr - ptr) > PCIR_POWER_DATA) in pci_read_cap()
|
/freebsd/sys/dev/xl/ |
H A D | if_xl.c | 1708 u_int32_t nextptr; in xl_list_rx_init() local 1728 nextptr = ld->xl_rx_dmaaddr + in xl_list_rx_init() 1731 ld->xl_rx_list[i].xl_next = htole32(nextptr); in xl_list_rx_init()
|
/freebsd/sys/net/ |
H A D | iflib.c | 2682 int nextptr; in prefetch_pkts() local 2686 nextptr = (cidx + CACHE_PTR_INCREMENT) & (nrxd - 1); in prefetch_pkts() 2687 prefetch(&fl->ifl_sds.ifsd_m[nextptr]); in prefetch_pkts() 2688 prefetch(&fl->ifl_sds.ifsd_cl[nextptr]); in prefetch_pkts()
|