HomeSort by: relevance | last modified time | path
    Searched defs:counts (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/sys/dev/pci/
if_eqos_pci.c 109 int counts[PCI_INTR_TYPE_SIZE]; local in function:eqos_pci_attach
177 counts[PCI_INTR_TYPE_MSI] = 1;
178 counts[PCI_INTR_TYPE_INTX] = 1;
179 if (pci_intr_alloc(pa, &psc->sc_intrs, counts, PCI_INTR_TYPE_MSI) != 0)
ciss_pci.c 232 int counts[PCI_INTR_TYPE_SIZE] = { local in function:ciss_pci_attach
245 counts[PCI_INTR_TYPE_MSI] = counts[PCI_INTR_TYPE_MSIX] = 1;
251 if (pci_intr_alloc(pa, &ih, counts, max_type)) {
if_eqos_pci.c 109 int counts[PCI_INTR_TYPE_SIZE]; local in function:eqos_pci_attach
177 counts[PCI_INTR_TYPE_MSI] = 1;
178 counts[PCI_INTR_TYPE_INTX] = 1;
179 if (pci_intr_alloc(pa, &psc->sc_intrs, counts, PCI_INTR_TYPE_MSI) != 0)
ciss_pci.c 232 int counts[PCI_INTR_TYPE_SIZE] = { local in function:ciss_pci_attach
245 counts[PCI_INTR_TYPE_MSI] = counts[PCI_INTR_TYPE_MSIX] = 1;
251 if (pci_intr_alloc(pa, &ih, counts, max_type)) {
xhci_pci.c 129 int counts[PCI_INTR_TYPE_SIZE]; local in function:xhci_pci_attach
216 counts[i] = 1;
219 counts[PCI_INTR_TYPE_MSI] = 0;
222 counts[PCI_INTR_TYPE_MSIX] = 0;
226 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, PCI_INTR_TYPE_MSIX)) {
xhci_pci.c 129 int counts[PCI_INTR_TYPE_SIZE]; local in function:xhci_pci_attach
216 counts[i] = 1;
219 counts[PCI_INTR_TYPE_MSI] = 0;
222 counts[PCI_INTR_TYPE_MSIX] = 0;
226 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, PCI_INTR_TYPE_MSIX)) {
nvme_pci.c 427 int counts[PCI_INTR_TYPE_SIZE]; local in function:nvme_pci_setup_intr
431 memset(counts, 0, sizeof(counts));
437 counts[PCI_INTR_TYPE_MSIX] = uimin(pci_msix_count(pa->pa_pc, pa->pa_tag),
439 if (counts[PCI_INTR_TYPE_MSIX] < 1) {
440 counts[PCI_INTR_TYPE_MSIX] = 0;
442 if (counts[PCI_INTR_TYPE_MSIX] > 2)
443 counts[PCI_INTR_TYPE_MSIX] = 2; /* adminq + 1 ioq */
449 counts[PCI_INTR_TYPE_MSI] = pci_msi_count(pa->pa_pc, pa->pa_tag);
450 if (counts[PCI_INTR_TYPE_MSI] > 0)
    [all...]
siisata_pci.c 223 int counts[PCI_INTR_TYPE_SIZE] = { local in function:siisata_pci_attach
235 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, max_type) != 0) {
ahcisata_pci.c 411 int counts[PCI_INTR_TYPE_SIZE] = { local in function:ahci_pci_attach
418 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, PCI_INTR_TYPE_MSIX)) {
423 psc->sc_nintr = counts[pci_intr_type(pa->pa_pc, psc->sc_pihp[0])];
nvme_pci.c 427 int counts[PCI_INTR_TYPE_SIZE]; local in function:nvme_pci_setup_intr
431 memset(counts, 0, sizeof(counts));
437 counts[PCI_INTR_TYPE_MSIX] = uimin(pci_msix_count(pa->pa_pc, pa->pa_tag),
439 if (counts[PCI_INTR_TYPE_MSIX] < 1) {
440 counts[PCI_INTR_TYPE_MSIX] = 0;
442 if (counts[PCI_INTR_TYPE_MSIX] > 2)
443 counts[PCI_INTR_TYPE_MSIX] = 2; /* adminq + 1 ioq */
449 counts[PCI_INTR_TYPE_MSI] = pci_msi_count(pa->pa_pc, pa->pa_tag);
450 if (counts[PCI_INTR_TYPE_MSI] > 0)
    [all...]
siisata_pci.c 223 int counts[PCI_INTR_TYPE_SIZE] = { local in function:siisata_pci_attach
235 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, max_type) != 0) {
ahcisata_pci.c 411 int counts[PCI_INTR_TYPE_SIZE] = { local in function:ahci_pci_attach
418 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, PCI_INTR_TYPE_MSIX)) {
423 psc->sc_nintr = counts[pci_intr_type(pa->pa_pc, psc->sc_pihp[0])];
  /src/sys/arch/mips/rmi/
rmixl_pcixvar.h 46 rmixl_pcix_evcnt_t *counts; /* index by cpu */ member in struct:rmixl_pcix_dispatch
rmixl_pcixvar.h 46 rmixl_pcix_evcnt_t *counts; /* index by cpu */ member in struct:rmixl_pcix_dispatch
rmixl_pcievar.h 64 rmixl_pcie_evcnt_t *counts; /* index by cpu */ member in struct:rmixl_pcie_link_dispatch
rmixl_pcievar.h 64 rmixl_pcie_evcnt_t *counts; /* index by cpu */ member in struct:rmixl_pcie_link_dispatch
  /src/sys/arch/shark/include/
profileio.h 75 unsigned short counts[4]; /* the counts */ member in struct:profHashEntry
profileio.h 75 unsigned short counts[4]; /* the counts */ member in struct:profHashEntry
  /src/usr.bin/systat/
syscall.c 60 uint64_t counts[SYS_NSYSENT]; member in struct:Info
69 static enum sort_order { UNSORTED, NAMES, COUNTS } sort_order = NAMES;
117 if (sysctlnametomib("kern.syscalls.counts", counts_mib,
206 for (i = 0; i < (int)__arraycount(s.counts); i++) {
210 v = s.counts[i] - s1.counts[i];
216 v = s.counts[i] - s1.counts[i];
238 if (sort_order == COUNTS) {
249 mvprintw(l, c, FMT, "STATS", "counts");
    [all...]
syscall.c 60 uint64_t counts[SYS_NSYSENT]; member in struct:Info
69 static enum sort_order { UNSORTED, NAMES, COUNTS } sort_order = NAMES;
117 if (sysctlnametomib("kern.syscalls.counts", counts_mib,
206 for (i = 0; i < (int)__arraycount(s.counts); i++) {
210 v = s.counts[i] - s1.counts[i];
216 v = s.counts[i] - s1.counts[i];
238 if (sort_order == COUNTS) {
249 mvprintw(l, c, FMT, "STATS", "counts");
    [all...]
  /src/usr.sbin/tprof/
tprof.c 198 tprof_counts_t counts; local in function:show_counters
200 memset(&counts, 0, sizeof(counts));
201 counts.c_cpu = n;
202 ret = ioctl(devfd, TPROF_IOC_GETCOUNTS, &counts);
209 eventnamewidth[i], counts.c_count[i]);
tprof.c 198 tprof_counts_t counts; local in function:show_counters
200 memset(&counts, 0, sizeof(counts));
201 counts.c_cpu = n;
202 ret = ioctl(devfd, TPROF_IOC_GETCOUNTS, &counts);
209 eventnamewidth[i], counts.c_count[i]);
  /src/lib/libresolv/
res_mkupdate.c 94 int section, numrrs = 0, counts[ns_s_max]; local in function:res_nmkupdate
123 memset(counts, 0, sizeof counts);
129 counts[section]++;
131 if (counts[i])
716 hp->qdcount = htons(counts[0]);
717 hp->ancount = htons(counts[1]);
718 hp->nscount = htons(counts[2]);
719 hp->arcount = htons(counts[3]);
res_mkupdate.c 94 int section, numrrs = 0, counts[ns_s_max]; local in function:res_nmkupdate
123 memset(counts, 0, sizeof counts);
129 counts[section]++;
131 if (counts[i])
716 hp->qdcount = htons(counts[0]);
717 hp->ancount = htons(counts[1]);
718 hp->nscount = htons(counts[2]);
719 hp->arcount = htons(counts[3]);
  /src/sys/dev/tprof/
tprof.c 626 tprof_getcounts(tprof_counts_t *counts)
636 if (counts->c_cpu >= ncpu)
638 ci = cpu_lookup(counts->c_cpu);
642 xc = xc_unicast(0, tprof_getcounts_cpu, tb, counts->c_count, ci);
645 counts->c_ncounters = tb->tb_softc.sc_ncounters;
646 counts->c_runningmask = tb->tb_softc.sc_ctr_running_mask;
1008 tprof_counts_t *counts; local in function:tprof_ioctl
1046 counts = data;
1048 error = tprof_getcounts(counts);

Completed in 35 milliseconds

1 2 3