Home
last modified time | relevance | path

Searched refs:counters (Results 1 – 25 of 203) sorted by relevance

123456789

/external/libxml2/xstc/
Dxstc.py471 self.counters = self.createCounters()
478 counters = {self.CNT_TOTAL:0, self.CNT_RAN:0, self.CNT_SUCCEEDED:0,
483 return counters
495 def updateCounters(self, test, counters): argument
497 counters[self.CNT_MEMLEAK] += 1
499 counters[self.CNT_SUCCEEDED] +=1
501 counters[self.CNT_FAILED] += 1
503 counters[self.CNT_BAD] += 1
505 counters[self.CNT_UNIMPLEMENTED] += 1
507 counters[self.CNT_INTERNAL] += 1
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DCountersTable.java61 Vector counters = (Vector) this.get(numberElem); in getCounters() local
63 return (null == counters) ? putElemNumber(numberElem) : counters; in getCounters()
78 Vector counters = new Vector(); in putElemNumber() local
80 this.put(numberElem, counters); in putElemNumber()
82 return counters; in putElemNumber()
131 Vector counters = getCounters(numberElem); in countNode() local
132 int nCounters = counters.size(); in countNode()
142 Counter counter = (Counter) counters.elementAt(i); in countNode()
171 Counter counter = (Counter) counters.elementAt(i); in countNode()
203 counters.addElement(counter); in countNode()
/external/wpa_supplicant_8/src/radius/
Dradius_server.c108 struct radius_server_counters counters; member
292 struct radius_server_counters counters; member
970 data->counters.access_rejects++; in radius_server_reject()
971 client->counters.access_rejects++; in radius_server_reject()
1037 data->counters.dup_access_requests++; in radius_server_request()
1038 client->counters.dup_access_requests++; in radius_server_request()
1068 data->counters.packets_dropped++; in radius_server_request()
1069 client->counters.packets_dropped++; in radius_server_request()
1108 data->counters.packets_dropped++; in radius_server_request()
1109 client->counters.packets_dropped++; in radius_server_request()
[all …]
/external/netperf/
Dnetcpu_kstat10.c57 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters) in print_cpu_time_counters() argument
61 "\t idle %llu\n",counters[instance].idle); in print_cpu_time_counters()
63 "\t user %llu\n",counters[instance].user); in print_cpu_time_counters()
65 "\t kernel %llu\n",counters[instance].kernel); in print_cpu_time_counters()
67 "\t interrupt %llu\n",counters[instance].interrupt); in print_cpu_time_counters()
120 get_cpu_counters(int cpu_num, cpu_time_counters_t *counters) in get_cpu_counters() argument
144 counters[cpu_num].idle = knp->value.ui64; in get_cpu_counters()
148 counters[cpu_num].user = knp->value.ui64; in get_cpu_counters()
152 counters[cpu_num].kernel = knp->value.ui64; in get_cpu_counters()
207 get_interrupt_counters(int cpu_num, cpu_time_counters_t *counters) in get_interrupt_counters() argument
[all …]
Dnetcpu_pstatnew.c157 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters) in print_cpu_time_counters() argument
161 "\t idle %llu\n",counters[instance].idle); in print_cpu_time_counters()
163 "\t user %llu\n",counters[instance].user); in print_cpu_time_counters()
165 "\t kernel %llu\n",counters[instance].kernel); in print_cpu_time_counters()
167 "\t interrupt %llu\n",counters[instance].interrupt); in print_cpu_time_counters()
/external/valgrind/cachegrind/
Dcg_branchpred.c91 static UChar counters[N_COUNTERS]; /* Counter array; presumably auto-zeroed */ variable
112 predicted_taken = counters[ indx ] >= 2; in do_cond_branch_predict()
122 if (counters[indx] < 3) in do_cond_branch_predict()
123 counters[indx]++; in do_cond_branch_predict()
125 if (counters[indx] > 0) in do_cond_branch_predict()
126 counters[indx]--; in do_cond_branch_predict()
129 tl_assert(counters[indx] <= 3); in do_cond_branch_predict()
/external/linux-tools-perf/src/tools/perf/util/
Dvalues.c23 values->counters = 0; in perf_read_values_init()
39 for (i = 0; i < values->counters; i++) in perf_read_values_destroy()
104 for (i = 0; i < values->counters; i++) in perf_read_values__findnew_counter()
108 if (values->counters == values->counters_max) in perf_read_values__findnew_counter()
111 i = values->counters++; in perf_read_values__findnew_counter()
137 counterwidth = malloc(values->counters * sizeof(*counterwidth)); in perf_read_values__display_pretty()
142 for (j = 0; j < values->counters; j++) in perf_read_values__display_pretty()
153 for (j = 0; j < values->counters; j++) { in perf_read_values__display_pretty()
161 for (j = 0; j < values->counters; j++) in perf_read_values__display_pretty()
168 for (j = 0; j < values->counters; j++) in perf_read_values__display_pretty()
[all …]
/external/v8/test/mjsunit/tools/
Dprofile.js229 this.counters = {};
235 if (!(func in this.counters)) {
236 this.counters[func] = { self: 0, total: 0 }; property
238 this.counters[func].self += self;
239 this.counters[func].total += total;
273 assertTrue('' in this.counters);
274 this.root = this.counters[''];
275 delete this.counters[''];
283 for (var c in testDriver.counters) {
295 assertTrue(rec.label in testDriver.counters, 'uncounted: ' + rec.label);
[all …]
/external/v8/src/extensions/
Dstatistics-extension.cc61 Counters* counters = isolate->counters(); in GetCounters() local
65 AddCounter(args.GetIsolate(), result, counters->name(), #name); in GetCounters()
71 AddCounter(args.GetIsolate(), result, counters->count_of_##name(), \ in GetCounters()
73 AddCounter(args.GetIsolate(), result, counters->size_of_##name(), \ in GetCounters()
79 AddCounter(args.GetIsolate(), result, counters->count_of_CODE_TYPE_##name(), \ in GetCounters()
81 AddCounter(args.GetIsolate(), result, counters->size_of_CODE_TYPE_##name(), \ in GetCounters()
88 counters->count_of_FIXED_ARRAY_##name(), \ in GetCounters()
91 counters->size_of_FIXED_ARRAY_##name(), \ in GetCounters()
/external/linux-tools-perf/src/tools/perf/
Ddesign.txt5 Performance counters are special hardware registers available on most modern
13 hardware capabilities. It provides per task and per CPU counters, counter
15 provides "virtual" 64-bit counters, regardless of the width of the
16 underlying hardware counters.
18 Performance counters are accessed via special file descriptors.
32 Multiple counters can be kept open at a time, and the counters
127 * Special "software" counters provided by the kernel, even if the hardware
128 * does not support performance counters. These counters measure various
149 Counters come in two flavours: counting counters and sampling
150 counters. A "counting" counter is one that is used for counting the
[all …]
/external/iptables/extensions/
Dlibxt_set.man24 \fB!\fP \fB\-\-update\-counters\fP
25 If the \fB\-\-update\-counters\fP flag is negated, then the packet and
26 byte counters of the matching element in the set won't be updated. Default
27 the packet and byte counters are updated.
31 byte counters of the matching element in the member set of a list type of
32 set won't be updated. Default the packet and byte counters are updated.
58 The packet and byte counters related options and flags are ignored
/external/iptables/libiptc/
Dlibiptc.c122 STRUCT_COUNTERS counters; /* per-chain counters */ member
833 memcpy(&h->chain_iterator_cur->counters, &pr->entry->counters, in __iptcc_p_del_policy()
834 sizeof(h->chain_iterator_cur->counters)); in __iptcc_p_del_policy()
1185 memcpy(&foot->e.counters, &c->counters, sizeof(STRUCT_COUNTERS)); in iptcc_compile_chain()
1648 STRUCT_COUNTERS *counters, in TC_GET_POLICY() argument
1666 *counters = c->counters; in TC_GET_POLICY()
2169 return &r->entry[0].counters; in TC_READ_COUNTER()
2204 STRUCT_COUNTERS *counters, in TC_SET_COUNTER() argument
2227 memcpy(&e->counters, counters, sizeof(STRUCT_COUNTERS)); in TC_SET_COUNTER()
2417 STRUCT_COUNTERS *counters, in TC_SET_POLICY() argument
[all …]
/external/llvm/test/tools/llvm-profdata/
Dcount-mismatch.proftext1 # Make sure we don't try to combine counters with the same function
2 # name and a matching hash if the number of counters differs
16 # counters differs.
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_stoptheworld_test.cc99 volatile int counters[kThreadCount]; member
132 __sync_fetch_and_add(&callback_argument->counters[this_thread_index], 1); in AdvancedIncrementerThread()
150 counters_at_init[j] = __sync_fetch_and_add(&callback_argument->counters[j], in AdvancedCallback()
155 if (__sync_fetch_and_add(&callback_argument->counters[j], 0) != in AdvancedCallback()
/external/iproute2/doc/
Dnstat.sgml10 to monitor kernel snmp counters and network interface statistics.
36 <item><tt/-z/ - dump zero counters too. By default they are not shown.
37 <item><tt/-a/ - dump absolute values of counters. By default <tt/Xstat/
40 see counters including values accumulated to the moment
91 to avoid wrapped counters and to obtain reasonable long counters
94 f.e. for gigabit rates byte counters overflow not more frequently than
/external/iptables/include/libiptc/
Dlibip6tc.h53 struct xt_counters *counters,
125 struct xt_counters *counters,
145 struct xt_counters *counters,
/external/iproute2/include/libiptc/
Dlibip6tc.h53 struct ip6t_counters *counters,
119 struct ip6t_counters *counters,
139 struct ip6t_counters *counters,
/external/v8/src/ic/x64/
Dic-x64.cc278 Counters* counters = masm->isolate()->counters(); in GenerateGeneric() local
279 __ IncrementCounter(counters->keyed_load_generic_smi(), 1); in GenerateGeneric()
297 __ IncrementCounter(counters->keyed_load_generic_slow(), 1); in GenerateGeneric()
376 __ IncrementCounter(counters->keyed_load_generic_lookup_cache(), 1); in GenerateGeneric()
384 __ IncrementCounter(counters->keyed_load_generic_lookup_cache(), 1); in GenerateGeneric()
397 __ IncrementCounter(counters->keyed_load_generic_symbol(), 1); in GenerateGeneric()
787 Counters* counters = masm->isolate()->counters(); in GenerateMiss() local
788 __ IncrementCounter(counters->load_miss(), 1); in GenerateMiss()
817 Counters* counters = masm->isolate()->counters(); in GenerateMiss() local
818 __ IncrementCounter(counters->keyed_load_miss(), 1); in GenerateMiss()
[all …]
Dstub-cache-x64.cc110 Counters* counters = masm->isolate()->counters(); in GenerateProbe() local
111 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1); in GenerateProbe()
145 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1); in GenerateProbe()
/external/v8/src/ic/arm64/
Dstub-cache-arm64.cc111 Counters* counters = masm->isolate()->counters(); in GenerateProbe() local
112 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, in GenerateProbe()
143 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, in GenerateProbe()
/external/compiler-rt/lib/profile/
DGCDAProfiling.c338 uint64_t **counters) { in llvm_gcda_increment_indirect_counter() argument
345 counter = counters[pred]; in llvm_gcda_increment_indirect_counter()
385 void llvm_gcda_emit_arcs(uint32_t num_counters, uint64_t *counters) { in llvm_gcda_emit_arcs() argument
423 counters[i] += (old_ctrs ? old_ctrs[i] : 0); in llvm_gcda_emit_arcs()
424 write_64bit_value(counters[i]); in llvm_gcda_emit_arcs()
432 fprintf(stderr, "llvmgcda: %llu\n", (unsigned long long)counters[i]); in llvm_gcda_emit_arcs()
/external/linux-tools-perf/src/tools/perf/Documentation/
Dperf.txt15 Performance counters for Linux are a new kernel-based subsystem
18 and software features (software counters, tracepoints) as well.
/external/iptables/iptables/
Diptables.c421 struct xt_counters counters; in print_header() local
422 const char *pol = iptc_get_policy(chain, &counters, handle); in print_header()
428 xtables_print_num(counters.pcnt, (format|FMT_NOTABLE)); in print_header()
430 xtables_print_num(counters.bcnt, (format|FMT_NOTABLE)); in print_header()
515 xtables_print_num(fw->counters.pcnt, format); in print_firewall()
516 xtables_print_num(fw->counters.bcnt, format); in print_firewall()
1046 struct xtc_handle *h, const char *chain, int counters) in print_rule4() argument
1052 if (counters > 0) in print_rule4()
1053 …printf("[%llu:%llu] ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt); in print_rule4()
1083 if (counters < 0) in print_rule4()
[all …]
Dip6tables.c436 struct xt_counters counters; in print_header() local
437 const char *pol = ip6tc_get_policy(chain, &counters, handle); in print_header()
443 xtables_print_num(counters.pcnt, (format|FMT_NOTABLE)); in print_header()
445 xtables_print_num(counters.bcnt, (format|FMT_NOTABLE)); in print_header()
528 xtables_print_num(fw->counters.pcnt, format); in print_firewall()
529 xtables_print_num(fw->counters.bcnt, format); in print_firewall()
1046 struct xtc_handle *h, const char *chain, int counters) in print_rule6() argument
1052 if (counters > 0) in print_rule6()
1053 …printf("[%llu:%llu] ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt); in print_rule6()
1092 if (counters < 0) in print_rule6()
[all …]
/external/v8/src/
Dcompilation-cache.cc204 isolate()->counters()->compilation_cache_hits()->Increment(); in Lookup()
207 isolate()->counters()->compilation_cache_misses()->Increment(); in Lookup()
243 isolate()->counters()->compilation_cache_hits()->Increment(); in Lookup()
246 isolate()->counters()->compilation_cache_misses()->Increment(); in Lookup()
283 isolate()->counters()->compilation_cache_hits()->Increment(); in Lookup()
286 isolate()->counters()->compilation_cache_misses()->Increment(); in Lookup()

123456789