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

1 2 3 4 5 6 7 8

  /src/external/cddl/dtracetoolkit/dist/Bin/
zvmstat 76 opt_time=0; interval=1; counts=1
99 interval=$1; counts=-1; shift
102 counts=$1; shift
119 inline int COUNTER = '$counts';
127 counts = COUNTER;
211 /counts == 0/
224 counts--;
httpdstat.d 58 counts = $2 ? $2 : -1;
122 counts--;
129 /counts == 0/
j_stat.d 25 * The numbers are per second counts for the interval specified. The default
31 * If you see counts in "CLOAD" but not in "METHODS", then you Java
63 counts = $2 ? $2 : -1;
138 counts--;
145 /counts == 0/
js_stat.d 19 * The numbers are counts for the interval specified. The default interval
53 counts = $2 ? $2 : -1;
110 counts--;
117 /counts == 0/
rb_stat.d 23 * The numbers are counts for the interval specified. The default interval
61 counts = $2 ? $2 : -1;
136 counts--;
143 /counts == 0/
sh_stat.d 21 * The numbers are counts for the interval specified. The default interval
58 counts = $2 ? $2 : -1;
123 counts--;
130 /counts == 0/
tcl_stat.d 22 * The numbers are counts for the interval specified. The default interval
58 counts = $2 ? $2 : -1;
127 counts--;
134 /counts == 0/
  /src/external/cddl/dtracetoolkit/dist/Zones/
zvmstat 76 opt_time=0; interval=1; counts=1
99 interval=$1; counts=-1; shift
102 counts=$1; shift
119 inline int COUNTER = '$counts';
127 counts = COUNTER;
211 /counts == 0/
224 counts--;
  /src/external/bsd/tre/dist/lib/
tre-filter.c 25 unsigned short counts[256]; local
33 for (i = 0; i < elementsof(counts); i++)
34 counts[i] = 0;
39 counts[*str]++;
48 counts[*str]++;
49 counts[*(str - window_len)]--;
54 if (counts[p->ch] < p->count)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
check-test-names.exp 27 # An associative array of counts of tests that either include a path in
28 # their test name, or have a duplicate test name. There are two counts
29 # for each issue, 'count', which counts occurrences within a single
30 # variant run, and 'total', which counts across all variants.
31 variable counts
32 array set counts {}
34 set counts($nm,count) 0
35 set counts($nm,total) 0
40 variable counts
42 incr counts($type,count
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
check-test-names.exp 27 # An associative array of counts of tests that either include a path in
28 # their test name, or have a duplicate test name. There are two counts
29 # for each issue, 'count', which counts occurrences within a single
30 # variant run, and 'total', which counts across all variants.
31 variable counts
32 array set counts {}
34 set counts($nm,count) 0
35 set counts($nm,total) 0
40 variable counts
42 incr counts($type,count
    [all...]
  /src/external/bsd/nsd/dist/
answer.c 63 uint16_t counts[RR_SECTION_COUNT]; local
75 counts[section] = 0;
84 counts[section] += packet_encode_rrset(
100 counts[ADDITIONAL_A_SECTION] == 0 &&
108 ANCOUNT_SET(q->packet, counts[ANSWER_SECTION]);
110 counts[AUTHORITY_SECTION]
111 + counts[OPTIONAL_AUTHORITY_SECTION]);
113 counts[ADDITIONAL_A_SECTION]
114 + counts[ADDITIONAL_AAAA_SECTION]
115 + counts[ADDITIONAL_OTHER_SECTION])
    [all...]
  /src/sys/dev/pci/
nvme_pci.c 427 int counts[PCI_INTR_TYPE_SIZE]; local
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...]
  /src/external/cddl/dtracetoolkit/dist/Apps/
httpdstat.d 58 counts = $2 ? $2 : -1;
122 counts--;
129 /counts == 0/
  /src/external/cddl/dtracetoolkit/dist/Java/
j_stat.d 25 * The numbers are per second counts for the interval specified. The default
31 * If you see counts in "CLOAD" but not in "METHODS", then you Java
63 counts = $2 ? $2 : -1;
138 counts--;
145 /counts == 0/
  /src/external/cddl/dtracetoolkit/dist/JavaScript/
js_stat.d 19 * The numbers are counts for the interval specified. The default interval
53 counts = $2 ? $2 : -1;
110 counts--;
117 /counts == 0/
  /src/external/cddl/dtracetoolkit/dist/Ruby/
rb_stat.d 23 * The numbers are counts for the interval specified. The default interval
61 counts = $2 ? $2 : -1;
136 counts--;
143 /counts == 0/
  /src/external/cddl/dtracetoolkit/dist/Shell/
sh_stat.d 21 * The numbers are counts for the interval specified. The default interval
58 counts = $2 ? $2 : -1;
123 counts--;
130 /counts == 0/
  /src/external/cddl/dtracetoolkit/dist/Tcl/
tcl_stat.d 22 * The numbers are counts for the interval specified. The default interval
58 counts = $2 ? $2 : -1;
127 counts--;
134 /counts == 0/
  /src/sys/arch/arm/pci/
pci_msi_machdep.c 203 pci_intr_alloc(const struct pci_attach_args *pa, pci_intr_handle_t **ihps, int *counts, pci_intr_type_t max_type)
209 if (counts != NULL) {
214 msix_count = counts[PCI_INTR_TYPE_MSIX];
217 msi_count = counts[PCI_INTR_TYPE_MSI];
220 intx_count = counts[PCI_INTR_TYPE_INTX];
227 memset(counts, 0, sizeof(*counts) * PCI_INTR_TYPE_SIZE);
235 if (counts != NULL)
236 counts[PCI_INTR_TYPE_MSIX] = msix_count;
243 if (counts != NULL
    [all...]
  /src/external/gpl3/gcc/dist/libgomp/
ordered.c 262 gomp_doacross_init (unsigned ncounts, long *counts, long chunk_size,
289 if (counts[i] == 0)
295 if (counts[i] == 1)
299 - __builtin_clzl (counts[i] - 1);
313 num_ents = counts[0];
315 num_ents = (counts[0] - 1) / chunk_size + 1;
362 unsigned long q = counts[0] / num_ents;
363 unsigned long t = counts[0] % num_ents;
374 GOMP_doacross_post (long *counts)
392 ent = counts[0]
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/
ordered.c 262 gomp_doacross_init (unsigned ncounts, long *counts, long chunk_size,
289 if (counts[i] == 0)
295 if (counts[i] == 1)
299 - __builtin_clzl (counts[i] - 1);
313 num_ents = counts[0];
315 num_ents = (counts[0] - 1) / chunk_size + 1;
362 unsigned long q = counts[0] / num_ents;
363 unsigned long t = counts[0] % num_ents;
374 GOMP_doacross_post (long *counts)
392 ent = counts[0]
    [all...]
  /src/external/gpl3/binutils/dist/gprof/
bb_exit_func.c 37 long *counts; member in struct:bb
89 fwrite (&ptr->counts[i], sizeof (ptr->counts[0]), 1, fp);
  /src/external/gpl3/binutils.old/dist/gprof/
bb_exit_func.c 37 long *counts; member in struct:bb
89 fwrite (&ptr->counts[i], sizeof (ptr->counts[0]), 1, fp);
  /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...]

Completed in 51 milliseconds

1 2 3 4 5 6 7 8